diff --git a/nginx.conf b/nginx.conf index 3f3753f..fc20381 100644 --- a/nginx.conf +++ b/nginx.conf @@ -30,8 +30,11 @@ http { index index.html; } location ~ \.php$ { - include snippets/fastcgi-php.conf; - fastcgi_pass unix:/var/run/php/php8.3-fpm.sock; + fastcgi_pass 127.0.0.1:9000; + fastcgi_index index.php; + #fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; + fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; + include fastcgi_params; } error_page 500 502 503 504 /50x.html;