mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-10 05:07:35 +02:00
greenlight v3
This commit is contained in:
15
mod/https/force-https.conf
Normal file
15
mod/https/force-https.conf
Normal file
@ -0,0 +1,15 @@
|
||||
# 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;
|
||||
}
|
Reference in New Issue
Block a user