docker/mod/https/force-https.conf

16 lines
337 B
Plaintext
Raw Normal View History

2023-03-21 12:58:28 +01:00
# overwriting force-https.conf from valian/docker-nginx-auto-ssl
location /bigbluebutton/api/join {
return 301 https://$host$request_uri;
}
# allow /api calls without redirecting to https
location /bigbluebutton/ {
2023-03-21 12:58:28 +01:00
proxy_pass https://127.0.0.1:443;
proxy_ssl_verify off;
}
location / {
return 301 https://$host$request_uri;
}