From e31cec992bcf525cff2546f038f0e0e9e9345564 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Sat, 2 Dec 2023 23:53:19 +0100 Subject: [PATCH] Update conf/nginx.conf: attempt to fix the 404 issue on CI --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index b5c7c32..02d66ba 100755 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -11,7 +11,7 @@ location __PATH__/ { # redirect some entire folders rewrite ^__PATH__/(vendor|translations|build)/.* /index.php break; - try_files $uri __PATH__/index.php$is_args$args; + try_files $uri /index.php$is_args$args; location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$;