mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-01 20:44:20 +01:00
16 lines
337 B
Plaintext
16 lines
337 B
Plaintext
# 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/ {
|
|
proxy_pass https://127.0.0.1:443;
|
|
proxy_ssl_verify off;
|
|
}
|
|
|
|
location / {
|
|
return 301 https://$host$request_uri;
|
|
}
|