forked from finallycoffee/nextcloud
fix(nginx-fpm-proxy): compare fpm_socket against strings not sequences
This commit is contained in:
parent
f27abe9e42
commit
29a145fe42
@ -1,6 +1,6 @@
|
||||
upstream php-handler {
|
||||
{% if fpm_socket %}
|
||||
{% if fpm_socket is sequence %}
|
||||
{% if fpm_socket is not string %}
|
||||
{% for upstream in fpm_socket %}
|
||||
server unix:{{ upstream }};
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user