File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ listen on. Each pool can also be run under a different UID and GID:
176
176
group = www-data
177
177
178
178
; use a unix domain socket
179
- listen = /var/run/php7.1-fpm.sock
179
+ listen = /var/run/php/ php7.1-fpm.sock
180
180
181
181
; or listen on a TCP socket
182
182
listen = 127.0.0.1:9000
@@ -274,7 +274,7 @@ instead:
274
274
275
275
.. code-block :: apache
276
276
277
- FastCgiExternalServer /usr/lib/cgi-bin/php7-fcgi -socket /var/run/php7.1-fpm.sock -pass-header Authorization
277
+ FastCgiExternalServer /usr/lib/cgi-bin/php7-fcgi -socket /var/run/php/ php7.1-fpm.sock -pass-header Authorization
278
278
279
279
.. _web-server-nginx :
280
280
@@ -295,7 +295,7 @@ The **minimum configuration** to get your application running under Nginx is:
295
295
}
296
296
297
297
location ~ ^/index\.php(/|$) {
298
- fastcgi_pass unix:/var/run/php7.1-fpm.sock;
298
+ fastcgi_pass unix:/var/run/php/ php7.1-fpm.sock;
299
299
fastcgi_split_path_info ^(.+\.php)(/.*)$;
300
300
include fastcgi_params;
301
301
You can’t perform that action at this time.
0 commit comments