From c0479952e48224d54f8819276dc055650c4f33da Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 18 Dec 2024 02:03:13 -0500 Subject: [PATCH] update PHP --- Nginx/Server Blocks/libraryofcode.org.conf | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Nginx/Server Blocks/libraryofcode.org.conf b/Nginx/Server Blocks/libraryofcode.org.conf index 6fcde40..a908d1f 100644 --- a/Nginx/Server Blocks/libraryofcode.org.conf +++ b/Nginx/Server Blocks/libraryofcode.org.conf @@ -14,12 +14,10 @@ server { } location ~ \.php$ { - #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini - include fastcgi_params; - fastcgi_intercept_errors on; - fastcgi_pass unix:/run/php/php7.3-fpm.sock; - #The following parameter can be also included in fastcgi_params file - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include fastcgi_params; + fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; # or fastcgi_pass 127.0.0.1:9000; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_index index.php; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {