We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bced0bf commit a0cebc7Copy full SHA for a0cebc7
manifests/fpm/pool.pp
@@ -24,6 +24,8 @@
24
#
25
# [*listen_mode*]
26
27
+# [*listen_acl_users*]
28
+#
29
# [*user*]
30
# The user that php-fpm should run as
31
@@ -128,6 +130,7 @@
128
130
$listen_owner = undef,
129
131
$listen_group = undef,
132
$listen_mode = undef,
133
+ $listen_acl_users = undef,
134
$user = $php::fpm::config::user,
135
$group = $php::fpm::config::group,
136
Optional[String[1]] $apparmor_hat = undef,
templates/fpm/pool.conf.erb
@@ -38,6 +38,9 @@ listen.mode = <%= @listen_mode %>
38
<% else -%>
39
;listen.mode = 0660
40
<% end -%>
41
+<% if @listen_acl_users -%>
42
+listen.acl_users = <%= @listen_acl_users %>
43
+<% end -%>
44
45
; Unix user/group of processes
46
; Note: The user is mandatory. If the group is not set, the default user's group
0 commit comments