17
17
; Default Value: none
18
18
;prefix = /path/to/pools/$pool
19
19
20
- ; Unix user/group of processes
21
- ; Note: The user is mandatory. If the group is not set, the default user's group
22
- ; will be used.
20
+ ; Unix user/group of the child processes. This can be used only if the master
21
+ ; process running user is root. It is set after the child process is created.
22
+ ; The user and group can be specified either by their name or by their numeric
23
+ ; IDs.
24
+ ; Note: If the user is root, the executable needs to be started with
25
+ --allow-to-run-as-root option to work.
26
+ ; Default Values: The user is set to master process running user by default.
27
+ ; If the group is not set, the user's group is used.
23
28
user = @php_fpm_user@
24
29
group = @php_fpm_group@
25
30
@@ -43,11 +48,12 @@ listen = 127.0.0.1:9000
43
48
; permissions must be set in order to allow connections from a web server. Many
44
49
; BSD-derived systems allow connections regardless of permissions. The owner
45
50
; and group can be specified either by name or by their numeric IDs.
46
- ; Default Values: user and group are set as the running user
47
- ; mode is set to 0660
51
+ ; Default Values: Owner is set to the master process running user. If the group
52
+ ; is not set, the owner's group is used. Mode is set to 0660.
48
53
;listen.owner = @php_fpm_user@
49
54
;listen.group = @php_fpm_group@
50
55
;listen.mode = 0660
56
+
51
57
; When POSIX Access Control Lists are supported you can set them using
52
58
; these options, value is a comma separated list of user/group names.
53
59
; When set, listen.owner and listen.group are ignored
0 commit comments