1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yellow_ynh.git synced 2024-09-03 20:36:12 +02:00

Update nginx.conf: no need for ^ in non-regex locations ? x_x

This commit is contained in:
Alexandre Aubin 2024-04-07 17:54:59 +02:00 committed by GitHub
parent a533f2ef5d
commit e2e8bc0f37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,7 @@ location __PATH__/ {
index yellow.php; index yellow.php;
if (!-e $request_filename) { if (!-e $request_filename) {
rewrite ^(.*)$ ^__PATH__/yellow.php last; rewrite ^(.*)$ __PATH__/yellow.php last;
break; break;
} }