fix error jenkins
This commit is contained in:
parent
eac0517e63
commit
07e973faf7
1 changed files with 7 additions and 3 deletions
|
@ -10,11 +10,15 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if certificate -%}
|
{% if certificate -%}
|
||||||
listen 443 ssl{% if http2_support == 1 or http2_support == true %} http2{% endif %};
|
{% if enable_proxy_protocol == 1 or enable_proxy_protocol == true%}
|
||||||
|
listen 444 ssl{% if http2_support %} http2{% endif %} proxy_protocol;
|
||||||
{% if ipv6 -%}
|
{% if ipv6 -%}
|
||||||
listen [::]:443 ssl{% if http2_support == 1 or http2_support == true %} http2{% endif %};
|
listen [::]:444 ssl{% if http2_support %} http2{% endif %} proxy_protocol;
|
||||||
|
{% endif %}
|
||||||
{% else -%}
|
{% else -%}
|
||||||
#listen [::]:443;
|
listen 443 ssl{% if http2_support %} http2{% endif %};
|
||||||
|
{% if ipv6 -%}
|
||||||
|
listen [::]:443 ssl{% if http2_support %} http2{% endif %};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue