Fix try_files directive in nginx config

This commit is contained in:
mirivlad 2024-09-08 20:49:07 +08:00
parent 64eb208d73
commit 9a08511980
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ echo "server {
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php$is_args$args;
try_files \$uri \$uri/ /index.php\$is_args\$args;
}
location ~ \.php$ {
fastcgi_pass unix:/run/php/php$PHP_VER-fpm_$domain.sock;