Merge pull request #1541 from opnsense/ngx_fix_upstream

www/nginx: fix broken template
This commit is contained in:
Fabian Franz BSc
2019-10-13 15:53:27 +02:00
committed by GitHub
@@ -92,7 +92,7 @@
{% elif server.route_field == 'sni_upstream_map' %}
proxy_pass $hostmap{{ server.sni_upstream_map.replace('-','') }};
{% endif %}
proxy_protocol {% if upstream.proxy_protocol == '1' %}on{% else %}off{% endif %};
proxy_protocol {% if server.proxy_protocol == '1' %}on{% else %}off{% endif %};
{% if server.trusted_proxies is defined and server.trusted_proxies != '' %}
{% for trusted_proxy in server.trusted_proxies.split(',') %}
set_real_ip_from {{ trusted_proxy }};