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 {
|
upstream php-handler {
|
||||||
{% if fpm_socket %}
|
{% if fpm_socket %}
|
||||||
{% if fpm_socket is sequence %}
|
{% if fpm_socket is not string %}
|
||||||
{% for upstream in fpm_socket %}
|
{% for upstream in fpm_socket %}
|
||||||
server unix:{{ upstream }};
|
server unix:{{ upstream }};
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user