We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aff3775 commit 5ceaf5fCopy full SHA for 5ceaf5f
web/rootfs/defaults/default
@@ -1,5 +1,6 @@
1
server {
2
listen 80 default_server;
3
+ listen [::]:80 default_server;
4
5
{{ if .Env.ENABLE_HTTP_REDIRECT | default "0" | toBool }}
6
return 301 https://$host$request_uri;
@@ -11,6 +12,7 @@ server {
11
12
{{ if not (.Env.DISABLE_HTTPS | default "0" | toBool) }}
13
14
listen 443 ssl http2;
15
+ listen [::]:443 ssl http2;
16
17
include /config/nginx/ssl.conf;
18
include /config/nginx/meet.conf;
0 commit comments