From 35c5bfb21297d34c9b3e70ec0767e06576499742 Mon Sep 17 00:00:00 2001 From: nokonoko Date: Thu, 19 Nov 2020 02:28:38 +0100 Subject: [PATCH] Update README.md --- README.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 56cee1a..972063a 100644 --- a/README.md +++ b/README.md @@ -144,19 +144,13 @@ server{ } location ~* \.php$ { - fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; - fastcgi_intercept_errors on; - fastcgi_index index.php; - fastcgi_split_path_info ^(.+\.php)(.*)$; - include fastcgi_params; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; + fastcgi_intercept_errors on; + fastcgi_index index.php; + fastcgi_split_path_info ^(.+\.php)(.*)$; + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } - - error_page 404 /4041x.html; - error_page 403 /4041x.html; - location /4041x.html { - root /home/neku/www; - } } ```