php-fpm: add a default for listen_backlog.

This commit is contained in:
Andrea Dell'Amico 2020-04-27 20:18:07 +02:00
parent 732f7ae002
commit c9b9af7968
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ listen = {{ item.listen | default ('127.0.0.1:9000') }}
; Set listen(2) backlog. A value of '-1' means unlimited.
; Default Value: -1
listen.backlog = {{ item.listen_backlog }}
listen.backlog = {{ item.listen_backlog | default(phpfpm_default_listen_backlog) }}
; List of ipv4 addresses of FastCGI clients which are allowed to connect.
; Equivalent to the FCGI_WEB_SERVER_ADDRS environment variable in the original