openvidu-deployment: Use coturn fork with stun fix and use stun-backward-compatibility for Kurento

v2
cruizba 2026-03-25 11:48:49 +01:00
parent fd80c41673
commit 75fb58430e
6 changed files with 18 additions and 1 deletions

View File

@ -91,6 +91,9 @@ services:
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY} - --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
- --no-tcp-relay - --no-tcp-relay
- --allowed-peer-ip=$$(discover-host-internal-ip.sh) - --allowed-peer-ip=$$(discover-host-internal-ip.sh)
- --stun-backward-compatibility
- --rfc5780
- --software-attribute
logging: logging:
options: options:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}" max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"

View File

@ -124,6 +124,9 @@ services:
- --use-auth-secret - --use-auth-secret
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY} - --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
- --no-tcp-relay - --no-tcp-relay
- --stun-backward-compatibility
- --rfc5780
- --software-attribute
logging: logging:
options: options:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}" max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"

View File

@ -108,6 +108,9 @@ services:
- --use-auth-secret - --use-auth-secret
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY} - --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
- --no-tcp-relay - --no-tcp-relay
- --stun-backward-compatibility
- --rfc5780
- --software-attribute
logging: logging:
options: options:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}" max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"

View File

@ -84,6 +84,9 @@ services:
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY} - --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
- --no-tcp-relay - --no-tcp-relay
- --allowed-peer-ip=$$(discover-host-internal-ip.sh) - --allowed-peer-ip=$$(discover-host-internal-ip.sh)
- --stun-backward-compatibility
- --rfc5780
- --software-attribute
logging: logging:
options: options:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}" max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"

View File

@ -75,6 +75,9 @@ services:
- --use-auth-secret - --use-auth-secret
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY} - --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
- --no-tcp-relay - --no-tcp-relay
- --stun-backward-compatibility
- --rfc5780
- --software-attribute
logging: logging:
options: options:
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}" max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"

View File

@ -1,4 +1,6 @@
FROM coturn/coturn:4.7.0-r2-alpine # Change to official coturn when the following PR is merged:
# https://github.com/coturn/coturn/pull/1839
FROM cruizba/coturn:4.9.0-stunfix
USER root USER root