From 53b0a60d6895922c410b15e27f11d7cecc18006b Mon Sep 17 00:00:00 2001 From: Neros Date: Wed, 30 Sep 2015 07:29:50 +0200 Subject: [PATCH] Update nginx.md With Jessie: `include fastcgi_params;` --> `include fastcgi.conf;` --- remote-access/web-server/nginx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/remote-access/web-server/nginx.md b/remote-access/web-server/nginx.md index a8dcc90bb..9a5474c83 100644 --- a/remote-access/web-server/nginx.md +++ b/remote-access/web-server/nginx.md @@ -72,7 +72,7 @@ location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; - include fastcgi_params; + include fastcgi.conf; } ``` @@ -91,7 +91,7 @@ It should look like this: # With php5-fpm: fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; - include fastcgi_params; + include fastcgi.conf; } ```