File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
{% if enable_proxy_protocol == 1 or enable_proxy_protocol == true%}
2
2
listen 88 proxy_protocol;
3
+ listen 80;
3
4
{% if ipv6 -%}
4
5
listen [::]:88 proxy_protocol;
5
- {% endif %}
6
+ listen [::]:80;
7
+ {% endif %}
6
8
{% else -%}
7
9
listen 80;
8
10
{% if ipv6 -%}
9
11
listen [::]:80;
10
- {% endif %}
12
+ {% endif %}
11
13
{% endif %}
12
14
{% if certificate -%}
13
15
{% if enable_proxy_protocol == 1 or enable_proxy_protocol == true%}
14
16
listen 444 ssl proxy_protocol;
17
+ listen 443 ssl;
15
18
{% if ipv6 -%}
16
19
listen [::]:444 ssl proxy_protocol;
17
- {% endif %}
20
+ listen [::]:443 ssl;
21
+ {% endif %}
18
22
{% else -%}
19
23
listen 443 ssl;
20
24
{% if ipv6 -%}
21
25
listen [::]:443 ssl;
22
- {% endif %}
26
+ {% endif %}
23
27
{% endif %}
24
28
{% else %}
25
29
#listen [::]:443;
You can’t perform that action at this time.
0 commit comments