mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-03-18 10:52:10 +07:00
Fix php upstream with TCP socket
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
{% for php in nginx_php %}
|
{% for php in nginx_php %}
|
||||||
upstream {{ php.upstream_name | default((php.version | php_default_upstream_name)) }} {
|
upstream {{ php.upstream_name | default((php.version | php_default_upstream_name)) }} {
|
||||||
{% for sock in php.sockets | default([]) %}
|
{% for sock in php.sockets | default([]) %}
|
||||||
{% if php.host is defined %}
|
{% if sock.host is defined %}
|
||||||
server {{ sock.host }}:{{ sock.port }} weight={{ sock.weight | default('1') }} max_fails={{ sock.max_fails | default('5') }} fail_timeout={{ sock.fail_timeout | default('10s') }};
|
server {{ sock.host }}:{{ sock.port }} weight={{ sock.weight | default('1') }} max_fails={{ sock.max_fails | default('5') }} fail_timeout={{ sock.fail_timeout | default('10s') }};
|
||||||
{% else %}
|
{% else %}
|
||||||
server unix:{{ sock.unix | default((php.version | php_default_upstream_socket)) }} weight={{ sock.weight | default('1') }};
|
server unix:{{ sock.unix | default((php.version | php_default_upstream_socket)) }} weight={{ sock.weight | default('1') }};
|
||||||
|
|||||||
Reference in New Issue
Block a user