mirror of https://github.com/OpenVidu/openvidu.git
openvidu-deployment: Use coturn fork with stun fix and use stun-backward-compatibility for Kurento
parent
fd80c41673
commit
75fb58430e
|
|
@ -91,6 +91,9 @@ services:
|
|||
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
|
||||
- --no-tcp-relay
|
||||
- --allowed-peer-ip=$$(discover-host-internal-ip.sh)
|
||||
- --stun-backward-compatibility
|
||||
- --rfc5780
|
||||
- --software-attribute
|
||||
logging:
|
||||
options:
|
||||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
|
|
|||
|
|
@ -124,6 +124,9 @@ services:
|
|||
- --use-auth-secret
|
||||
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
|
||||
- --no-tcp-relay
|
||||
- --stun-backward-compatibility
|
||||
- --rfc5780
|
||||
- --software-attribute
|
||||
logging:
|
||||
options:
|
||||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
|
|
|||
|
|
@ -108,6 +108,9 @@ services:
|
|||
- --use-auth-secret
|
||||
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
|
||||
- --no-tcp-relay
|
||||
- --stun-backward-compatibility
|
||||
- --rfc5780
|
||||
- --software-attribute
|
||||
logging:
|
||||
options:
|
||||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
|
|
|||
|
|
@ -84,6 +84,9 @@ services:
|
|||
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
|
||||
- --no-tcp-relay
|
||||
- --allowed-peer-ip=$$(discover-host-internal-ip.sh)
|
||||
- --stun-backward-compatibility
|
||||
- --rfc5780
|
||||
- --software-attribute
|
||||
logging:
|
||||
options:
|
||||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
|
|
|||
|
|
@ -75,6 +75,9 @@ services:
|
|||
- --use-auth-secret
|
||||
- --static-auth-secret=$${COTURN_SHARED_SECRET_KEY}
|
||||
- --no-tcp-relay
|
||||
- --stun-backward-compatibility
|
||||
- --rfc5780
|
||||
- --software-attribute
|
||||
logging:
|
||||
options:
|
||||
max-size: "${DOCKER_LOGS_MAX_SIZE:-100M}"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue