Changed variable structure for bbb

This commit is contained in:
2025-04-06 05:19:30 +02:00
parent 8d58aa2364
commit ef2d62adac
3 changed files with 15 additions and 8 deletions

View File

@@ -28,11 +28,11 @@ RECORDING_MAX_AGE_DAYS=365
# SECRETS
# ====================================
# important! change these to any random values
SHARED_SECRET={{bigbluebutton_shared_secret}}
ETHERPAD_API_KEY={{bigbluebutton_etherpad_api_key}}
RAILS_SECRET={{bigbluebutton_rails_secret}}
POSTGRESQL_SECRET={{bigbluebutton_postgresql_secret}}
FSESL_PASSWORD={{bigbluebutton_fsesl_password}}
SHARED_SECRET={{applications.bigbluebutton.shared_secret}}
ETHERPAD_API_KEY={{applications.bigbluebutton.etherpad_api_key}}
RAILS_SECRET={{applications.bigbluebutton.rails_secret}}
POSTGRESQL_SECRET={{applications.bigbluebutton.postgresql_secret}}
FSESL_PASSWORD={{applications.bigbluebutton.fsesl_password}}
@@ -54,7 +54,7 @@ STUN_PORT={{ ports.public.stun[application_id] }}
# TURN SERVER
# uncomment and adjust following two lines to add an external TURN server
TURN_SERVER=turns:{{domains[application_id]}}:{{ ports.public.turn[application_id] }}?transport=tcp
TURN_SECRET={{bigbluebutton_turn_secret}}
TURN_SECRET={{applications.bigbluebutton.turn_secret}}
# Allowed SIP IPs
# due to high traffic caused by bots, by default the SIP port is blocked.

View File

@@ -5,7 +5,7 @@ docker_compose_file_final: "{{ docker_compose.directories.instance }}docker-c
database_instance: "bigbluebutton"
database_name: "greenlight-v3"
database_username: "postgres"
database_password: "{{bigbluebutton_postgresql_secret}}"
database_password: "{{applications.bigbluebutton.postgresql_secret}}"
domain: "{{ domains[application_id] }}"
http_port: "{{ ports.localhost.http[application_id] }}"
bbb_env_file_link: "{{ docker_compose.directories.instance }}.env"