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