diff --git a/Nginx/Server Blocks/hr.libraryofcode.org.conf b/Nginx/Server Blocks/hr.libraryofcode.org.conf index 7e23490..57db927 100644 --- a/Nginx/Server Blocks/hr.libraryofcode.org.conf +++ b/Nginx/Server Blocks/hr.libraryofcode.org.conf @@ -13,12 +13,14 @@ server { error_log /var/log/nginx/hr_error.log; location / { - try_files $uri $uri/ /index.php?$uri&$args; - } - - location ~ \.php$ { - fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; + try_files $uri $uri/ /index.php?$query_string; + } + + location ~ ^/(.+\.php)$ { + try_files $uri =404; + fastcgi_pass unix:/run/php/php7.2-fpm.sock; + fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - include fastcgi_params; + include /etc/nginx/fastcgi_params; } }