dev mode: allow presentation access via http

This commit is contained in:
chandi 2024-01-07 23:55:52 +01:00
parent 13f55a1be9
commit b4918c53d3
2 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,8 @@ redisHost=redis
{{ if isTrue .Env.DEV_MODE }} {{ if isTrue .Env.DEV_MODE }}
beans.presentationService.defaultUploadedPresentation=https://test.bigbluebutton.org/default.pdf beans.presentationService.defaultUploadedPresentation=https://test.bigbluebutton.org/default.pdf
# fetch presentations without HTTPS
presentationBaseURL=http://{{ .Env.DOMAIN }}/bigbluebutton/presentation
{{else}} {{else}}
beans.presentationService.defaultUploadedPresentation=${bigbluebutton.web.serverURL}/default.pdf beans.presentationService.defaultUploadedPresentation=${bigbluebutton.web.serverURL}/default.pdf
{{end}} {{end}}

View File

@ -5,7 +5,7 @@ location /bigbluebutton/api/join {
} }
# allow /api calls without redirecting to https # allow /api calls without redirecting to https
location /bigbluebutton/api { location /bigbluebutton/ {
proxy_pass https://127.0.0.1:443; proxy_pass https://127.0.0.1:443;
proxy_ssl_verify off; proxy_ssl_verify off;
} }