Files
jitsi-meet-deployment/web/rootfs/defaults/default
2020-10-02 16:56:20 +02:00

21 lines
424 B
Plaintext

server {
listen 80 default_server;
listen [::]:80 default_server;
{{ if .Env.ENABLE_HTTP_REDIRECT | default "0" | toBool }}
return 301 https://$host$request_uri;
{{ else }}
include /config/nginx/meet.conf;
{{ end }}
}
{{ if not (.Env.DISABLE_HTTPS | default "0" | toBool) }}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
include /config/nginx/ssl.conf;
include /config/nginx/meet.conf;
}
{{ end }}