Merge pull request #110 from platan/proxy_timeouts
Allow to set proxy_connect_timeout and proxy_read_timeout per reverse proxy
This commit is contained in:
commit
a68ddd708d
@ -365,7 +365,9 @@ nginx_http_template:
|
||||
locations:
|
||||
backend:
|
||||
location: /
|
||||
proxy_connect_timeout: null
|
||||
proxy_pass: http://backend
|
||||
proxy_read_timeout: null
|
||||
proxy_ssl:
|
||||
cert: /etc/ssl/certs/proxy_default.crt
|
||||
key: /etc/ssl/private/proxy_default.key
|
||||
|
@ -207,7 +207,9 @@ nginx_http_template:
|
||||
locations:
|
||||
backend:
|
||||
location: /
|
||||
proxy_connect_timeout: null
|
||||
proxy_pass: http://backend
|
||||
proxy_read_timeout: null
|
||||
proxy_ssl:
|
||||
cert: /etc/ssl/certs/proxy_default.crt
|
||||
key: /etc/ssl/private/proxy_default.key
|
||||
|
@ -85,8 +85,14 @@ server {
|
||||
{% endif %}
|
||||
{% if item.value.reverse_proxy.locations[location].auth_basic_file is defined and item.value.reverse_proxy.locations[location].auth_basic_file %}
|
||||
auth_basic_user_file {{ item.value.reverse_proxy.locations[location].auth_basic_file }};
|
||||
{% endif %}
|
||||
{% if item.value.reverse_proxy.locations[location].proxy_connect_timeout is defined and item.value.reverse_proxy.locations[location].proxy_connect_timeout %}
|
||||
proxy_connect_timeout {{ item.value.reverse_proxy.locations[location].proxy_connect_timeout }};
|
||||
{% endif %}
|
||||
proxy_pass {{ item.value.reverse_proxy.locations[location].proxy_pass }};
|
||||
{% if item.value.reverse_proxy.locations[location].proxy_read_timeout is defined and item.value.reverse_proxy.locations[location].proxy_read_timeout %}
|
||||
proxy_read_timeout {{ item.value.reverse_proxy.locations[location].proxy_read_timeout }};
|
||||
{% endif %}
|
||||
{% if item.value.reverse_proxy.locations[location].proxy_ssl is defined %}
|
||||
|
||||
{% if item.value.reverse_proxy.locations[location].proxy_ssl.cert is defined %}
|
||||
|
Loading…
Reference in New Issue
Block a user