updated nginx state

This commit is contained in:
Paul 2020-09-06 16:30:47 +02:00
parent 705fdec133
commit 72d919fcb3
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ server {
location ~ \.php?$ {
include fastcgi_params;
fastcgi_pass unix:{{ nginx.config.php_socket_file }};
fastcgi_pass unix:{{ php_socket_file }};
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
}

View File

@ -42,7 +42,7 @@ server {
location ~ ^(.+?\.php)(/.*)?$ {
include fastcgi_params;
fastcgi_pass unix:{{ nginx.config.php_socket_file }};
fastcgi_pass unix:{{ php_socket_file }};
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_split_path_info ^(.+\.php)(/.+)$;