From c0342b148209c0154d0e198165fcb251345ee893 Mon Sep 17 00:00:00 2001 From: Diogo Cordeiro Date: Fri, 26 Jul 2019 18:29:41 +0100 Subject: [PATCH] [DOCUMENTATION] Allow install.php to be ran with sample nginx conf --- .../SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample b/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample index 1d1bb161ab..028bac6e22 100644 --- a/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample +++ b/DOCUMENTATION/SYSTEM_ADMINISTRATORS/webserver_conf/nginx.conf.sample @@ -32,7 +32,8 @@ server { index index.php; # PHP - location ^~ /index.php { + location ~ ^/(index|install)\.php$ { + #location ^~ /index.php { include fastcgi_params; include snippets/fastcgi-php.conf;