1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/BicBucStriim_ynh.git synced 2024-09-03 18:15:53 +02:00

Update nginx.conf

This commit is contained in:
Éric Gaspar 2023-08-28 14:55:09 +02:00
parent a6d73531a5
commit c813a81b21

View file

@ -12,7 +12,7 @@ location __PATH__/ {
index index.php;
try_files $uri $uri/ __PATH__/index.php;
try_files $uri $uri/ @bicbucstriim;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
@ -28,3 +28,8 @@ location __PATH__/ {
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location @bicbucstriim {
rewrite /(.*)$ /index.php?/$1 last;
}