feat: disable welcome page so bare URL doesn't expose room creation
All checks were successful
deploy / deploy (push) Successful in 22s

This commit is contained in:
Dennis Paradzinski 2026-05-11 15:38:32 +02:00
parent 3358272cf7
commit cb4b2ddaba

View File

@ -46,8 +46,15 @@ data:
# === STUN — default Jitsi-hosted STUN servers; ok for getting started === # === STUN — default Jitsi-hosted STUN servers; ok for getting started ===
JVB_STUN_SERVERS: "meet-jit-si-turnrelay.jitsi.net:443" JVB_STUN_SERVERS: "meet-jit-si-turnrelay.jitsi.net:443"
# === Minor UX tweaks === # === UX / lockdown ===
# Pre-join page on — gives joiners a chance to set audio/video before
# they hit the room.
ENABLE_PREJOIN_PAGE: "1" ENABLE_PREJOIN_PAGE: "1"
ENABLE_WELCOME_PAGE: "1" # Welcome page off — visiting https://meet.it.financeflow.de/ bare
# shows a minimal shell instead of a "create new room" form. Combined
# with AUTH=jwt, the only way in is via a signed deep-link Embertime
# hands out.
ENABLE_WELCOME_PAGE: "0"
ENABLE_CLOSE_PAGE: "0"
ENABLE_TRANSCRIPTIONS: "0" ENABLE_TRANSCRIPTIONS: "0"
ENABLE_RECORDING: "0" ENABLE_RECORDING: "0"