update php-fpm
This commit is contained in:
parent
a94044ed02
commit
eb5937a6be
1 changed files with 17 additions and 2 deletions
|
@ -13,7 +13,22 @@ error_log = /dev/stderr
|
||||||
; (IPv6 and IPv4-mapped) on a specific port;
|
; (IPv6 and IPv4-mapped) on a specific port;
|
||||||
; '/path/to/unix/socket' - to listen on a unix socket.
|
; '/path/to/unix/socket' - to listen on a unix socket.
|
||||||
; Note: This value is mandatory.
|
; Note: This value is mandatory.
|
||||||
listen = 127.0.0.1:9000
|
listen = /run/php-fpm.sock
|
||||||
|
|
||||||
|
; Set permissions for unix socket, if one is used. In Linux, read/write
|
||||||
|
; permissions must be set in order to allow connections from a web server. Many
|
||||||
|
; BSD-derived systems allow connections regardless of permissions. The owner
|
||||||
|
; and group can be specified either by name or by their numeric IDs.
|
||||||
|
; Default Values: user and group are set as the running user
|
||||||
|
; mode is set to 0660
|
||||||
|
listen.owner = nobody
|
||||||
|
listen.group = nobody
|
||||||
|
;listen.mode = 0660
|
||||||
|
; When POSIX Access Control Lists are supported you can set them using
|
||||||
|
; these options, value is a comma separated list of user/group names.
|
||||||
|
; When set, listen.owner and listen.group are ignored
|
||||||
|
;listen.acl_users =
|
||||||
|
;listen.acl_groups =
|
||||||
|
|
||||||
; Enable status page
|
; Enable status page
|
||||||
pm.status_path = /fpm-status
|
pm.status_path = /fpm-status
|
||||||
|
@ -53,4 +68,4 @@ catch_workers_output = yes
|
||||||
decorate_workers_output = no
|
decorate_workers_output = no
|
||||||
|
|
||||||
; Enable ping page to use in healthcheck
|
; Enable ping page to use in healthcheck
|
||||||
ping.path = /fpm-ping
|
ping.path = /fpm-ping
|
Loading…
Reference in a new issue