greenlight v3

This commit is contained in:
chandi
2023-03-21 12:58:28 +01:00
parent 0766a4033c
commit 3d433f8a5c
7 changed files with 99 additions and 221 deletions

View 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;
}