Fix poold template: bad variable name

pull/5/head
Emilien Mantel 2015-07-26 21:06:25 +02:00
parent 1aa367ed9a
commit a4e5720e83
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ listen = {{ item.listen }}
; BSD-derived systems allow connections regardless of permissions.
; Default Values: user and group are set as the running user
; mode is set to 0660
listen.owner = {{ item.listen_ | default('www-data') }}
listen.group = {{ item.listen_ | default('www-data') }}
listen.owner = {{ item.listen_owner | default('www-data') }}
listen.group = {{ item.listen_owner | default('www-data') }}
;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.