mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-26 08:38:49 +01:00
devmode: disable lets encrypt, greenlight support
This commit is contained in:
parent
4a6187174b
commit
656ace6096
@ -12,7 +12,7 @@ services:
|
||||
DB_NAME: greenlight
|
||||
DB_USERNAME: postgres
|
||||
DB_PASSWORD: password
|
||||
BIGBLUEBUTTON_ENDPOINT: https://${DOMAIN}/bigbluebutton/api/
|
||||
BIGBLUEBUTTON_ENDPOINT: http://10.7.7.1:8080/bigbluebutton/api/
|
||||
BIGBLUEBUTTON_SECRET: ${SHARED_SECRET}
|
||||
SECRET_KEY_BASE: ${RAILS_SECRET}
|
||||
ports:
|
||||
|
@ -7,7 +7,7 @@ services:
|
||||
- ssl_data:/etc/resty-auto-ssl
|
||||
- ./mod/https/site.conf:/etc/nginx/conf.d/bbb-docker.conf
|
||||
environment:
|
||||
ALLOWED_DOMAINS: ${DOMAIN}
|
||||
ALLOWED_DOMAINS: ${CERTIFICATE_DOMAINS}
|
||||
network_mode: host
|
||||
|
||||
volumes:
|
||||
|
@ -10,6 +10,11 @@ then
|
||||
export $(cat .env | sed 's/#.*//g' | grep -v "WELCOME_FOOTER" | grep -v "WELCOME_MESSAGE" | xargs)
|
||||
fi
|
||||
|
||||
export CERTIFICATE_DOMAINS=$DOMAIN
|
||||
if [ "$DEV_MODE" == true ]; then
|
||||
export CERTIFICATE_DOMAINS="invalid"
|
||||
fi
|
||||
|
||||
# concatenate docker-compose file
|
||||
COMPOSE_FILES="-f docker-compose.yml"
|
||||
if [ "$ENABLE_HTTPS_PROXY" == true ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user