Skip to content

Commit 701151e

Browse files
committed
Merge pull request raspberrypi#260 from NerosTie/patch-1
nginx: use fastcgi.conf instead of fastcgi_params in jessie
2 parents b4fcabf + 53b0a60 commit 701151e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

remote-access/web-server/nginx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ location ~ \.php$ {
7272
fastcgi_split_path_info ^(.+\.php)(/.+)$;
7373
fastcgi_pass unix:/var/run/php5-fpm.sock;
7474
fastcgi_index index.php;
75-
include fastcgi_params;
75+
include fastcgi.conf;
7676
}
7777
7878
```
@@ -91,7 +91,7 @@ It should look like this:
9191
# With php5-fpm:
9292
fastcgi_pass unix:/var/run/php5-fpm.sock;
9393
fastcgi_index index.php;
94-
include fastcgi_params;
94+
include fastcgi.conf;
9595
}
9696
```
9797

0 commit comments

Comments
 (0)