Skip to content

Commit

Permalink
dev mode: allow presentation access via http
Browse files Browse the repository at this point in the history
  • Loading branch information
alangecker committed Jan 7, 2024
1 parent 13f55a1 commit b4918c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions mod/bbb-web/bbb-web.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ redisHost=redis

{{ if isTrue .Env.DEV_MODE }}
beans.presentationService.defaultUploadedPresentation=https://test.bigbluebutton.org/default.pdf
# fetch presentations without HTTPS
presentationBaseURL=http://{{ .Env.DOMAIN }}/bigbluebutton/presentation
{{else}}
beans.presentationService.defaultUploadedPresentation=${bigbluebutton.web.serverURL}/default.pdf
{{end}}
Expand Down
2 changes: 1 addition & 1 deletion mod/https/force-https.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ location /bigbluebutton/api/join {
}

# allow /api calls without redirecting to https
location /bigbluebutton/api {
location /bigbluebutton/ {
proxy_pass https://127.0.0.1:443;
proxy_ssl_verify off;
}
Expand Down

0 comments on commit b4918c5

Please sign in to comment.