TURN_API_KEY and TURN_SECRET fix

the docker environment variables TURN_API_KEY and TURN_SECRET didn't work
this is because the entrypoint.sh is only replacing the values but do not uncomment the line like the other replacements do
This commit is contained in:
3x3cut0r 2023-02-22 19:59:10 +01:00 committed by GitHub
parent e93291b100
commit 5921d5dcd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,10 +128,10 @@ if [ ! -f "$CONFIG" ]; then
fi
if [ ! -z "$TURN_API_KEY" ]; then
sed -i "s|the-api-key-for-the-rest-service|$TURN_API_KEY|" "$CONFIG"
sed -i "s|#apikey = the-api-key-for-the-rest-service|apikey = $TURN_API_KEY|" "$CONFIG"
fi
if [ ! -z "$TURN_SECRET" ]; then
sed -i "s|6d1c17a7-c736-4e22-b02c-e2955b7ecc64|$TURN_SECRET|" "$CONFIG"
sed -i "s|#secret = 6d1c17a7-c736-4e22-b02c-e2955b7ecc64|secret = $TURN_SECRET|" "$CONFIG"
fi
if [ ! -z "$TURN_SERVERS" ]; then
sed -i "s|#servers =.*|servers = $TURN_SERVERS|" "$CONFIG"