mirror of https://github.com/OpenVidu/openvidu.git
20 lines
613 B
Bash
20 lines
613 B
Bash
![]() |
#!/bin/bash -x
|
||
|
set -e
|
||
|
|
||
|
if [ -n "$KMS_TURN_URL" ]; then
|
||
|
echo "turnURL=$KMS_TURN_URL" > /etc/kurento/modules/kurento/WebRtcEndpoint.conf.ini
|
||
|
fi
|
||
|
|
||
|
if [ -n "$KMS_STUN_IP" -a -n "$KMS_STUN_PORT" ]; then
|
||
|
# Generate WebRtcEndpoint configuration
|
||
|
echo "stunServerAddress=$KMS_STUN_IP" > /etc/kurento/modules/kurento/WebRtcEndpoint.conf.ini
|
||
|
echo "stunServerPort=$KMS_STUN_PORT" >> /etc/kurento/modules/kurento/WebRtcEndpoint.conf.ini
|
||
|
fi
|
||
|
|
||
|
# Remove ipv6 local loop until ipv6 is supported
|
||
|
cat /etc/hosts | sed '/::1/d' | tee /etc/hosts > /dev/null
|
||
|
|
||
|
export GST_DEBUG=Kurento*:5
|
||
|
|
||
|
exec /usr/bin/kurento-media-server "$@"
|