File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 29
29
# When set, listen.owner and listen.group are ignored. Value is a comma separated
30
30
# list of user names.
31
31
#
32
+ # [*listen_acl_groups*]
33
+ # See listen_acl_users. Value is a comma separated list of group names.
34
+ #
32
35
# [*user*]
33
36
# The user that php-fpm should run as
34
37
#
134
137
$listen_group = undef ,
135
138
$listen_mode = undef ,
136
139
$listen_acl_users = undef ,
140
+ $listen_acl_groups = undef ,
137
141
$user = $php::fpm::config::user,
138
142
$group = $php::fpm::config::group,
139
143
Optional[String[1]] $apparmor_hat = undef ,
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ listen.mode = <%= @listen_mode %>
41
41
<% if @listen_acl_users -%>
42
42
listen.acl_users = <%= @listen_acl_users %>
43
43
<% end -%>
44
+ <% if @listen_acl_groups -%>
45
+ listen.acl_groups = <%= @listen_acl_groups %>
46
+ <% end -%>
44
47
45
48
; Unix user/group of processes
46
49
; Note: The user is mandatory. If the group is not set, the default user's group
You can’t perform that action at this time.
0 commit comments