add valid cert to internal communication
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2023-03-05 18:26:08 +01:00
parent 3c883cdded
commit 4e1833bbbf
12 changed files with 66 additions and 41 deletions

View File

@ -66,7 +66,7 @@ http {
return 301 https://$host$request_uri;
}
{%- for proxysite in proxy %}
{%- for proxysite in proxy -%}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
@ -90,9 +90,9 @@ http {
}
}
{%- endfor %}
{%- endfor -%}
{%- for staticsite in static %}
{%- for staticsite in static -%}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
@ -105,9 +105,9 @@ http {
}
}
{%- endfor %}
{%- endfor -%}
{%- for redirectsite in redirect %}
{%- for redirectsite in redirect -%}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
@ -117,7 +117,7 @@ http {
return 301 {{ redirectsite.destination }};
}
{%- endfor %}
{%- endfor -%}
server {
listen 443 ssl http2;