From e2e8bc0f37d36f08a6352e061bc9ed4129da86df Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Sun, 7 Apr 2024 17:54:59 +0200 Subject: [PATCH] Update nginx.conf: no need for ^ in non-regex locations ? x_x --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 5c4e020..96bf29e 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -18,7 +18,7 @@ location __PATH__/ { index yellow.php; if (!-e $request_filename) { - rewrite ^(.*)$ ^__PATH__/yellow.php last; + rewrite ^(.*)$ __PATH__/yellow.php last; break; }