From a7eb1dae4d69df56b522442e42f9cbbd7614e58d Mon Sep 17 00:00:00 2001 From: liberodark Date: Mon, 30 Dec 2019 14:32:04 +0100 Subject: [PATCH] Update nginx.conf --- conf/nginx.conf | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 69a5329..0e02f61 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,14 +1,11 @@ -root __FINALPATH__/; -index index.php; - -location __PATH__/ { - try_files $uri $uri/ /index.php?$args; - } +root __FINALPATH__/; +index index.php; location ~ \.php$ { - include /etc/nginx/fastcgi_params; try_files $uri =404; fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; - fastcgi_index index.php; + fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + include /etc/nginx/fastcgi_params; + }