fix(turn): emit TURN_CREDENTIALS too (Prosody key name) — was missing the secret value in external_services config
All checks were successful
deploy / deploy (push) Successful in 22s
All checks were successful
deploy / deploy (push) Successful in 22s
This commit is contained in:
parent
ed27e707a2
commit
94e3cea153
@ -27,5 +27,9 @@ stringData:
|
|||||||
JWT_APP_SECRET: "REPLACE_WITH_VALUE_FROM_EMBERTIME"
|
JWT_APP_SECRET: "REPLACE_WITH_VALUE_FROM_EMBERTIME"
|
||||||
# HMAC secret shared between coturn and Prosody. Prosody mints
|
# HMAC secret shared between coturn and Prosody. Prosody mints
|
||||||
# time-limited TURN credentials; coturn validates with the same key.
|
# time-limited TURN credentials; coturn validates with the same key.
|
||||||
# Generate fresh via generate-secrets.sh.
|
# Set under BOTH key names — same value:
|
||||||
|
# - TURN_CREDENTIALS (Prosody mod_external_services convention)
|
||||||
|
# - TURN_CREDENTIALS_SECRET (coturn / our manifest convention)
|
||||||
|
# generate-secrets.sh writes both for you.
|
||||||
|
TURN_CREDENTIALS: "REPLACE_WITH_32_RANDOM_CHARS"
|
||||||
TURN_CREDENTIALS_SECRET: "REPLACE_WITH_32_RANDOM_CHARS"
|
TURN_CREDENTIALS_SECRET: "REPLACE_WITH_32_RANDOM_CHARS"
|
||||||
|
|||||||
@ -32,5 +32,9 @@ stringData:
|
|||||||
JICOFO_AUTH_PASSWORD: "${JICOFO_AUTH_PASSWORD}"
|
JICOFO_AUTH_PASSWORD: "${JICOFO_AUTH_PASSWORD}"
|
||||||
JVB_AUTH_USER: "jvb"
|
JVB_AUTH_USER: "jvb"
|
||||||
JVB_AUTH_PASSWORD: "${JVB_AUTH_PASSWORD}"
|
JVB_AUTH_PASSWORD: "${JVB_AUTH_PASSWORD}"
|
||||||
|
# Same HMAC value under two keys: Prosody's mod_external_services
|
||||||
|
# template reads TURN_CREDENTIALS; coturn's start-script reads
|
||||||
|
# TURN_CREDENTIALS_SECRET. Both must match.
|
||||||
|
TURN_CREDENTIALS: "${TURN_CREDENTIALS_SECRET}"
|
||||||
TURN_CREDENTIALS_SECRET: "${TURN_CREDENTIALS_SECRET}"
|
TURN_CREDENTIALS_SECRET: "${TURN_CREDENTIALS_SECRET}"
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user