You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed -i "s/#COTURN_TLS_CERT_PATH=.*/COTURN_TLS_CERT_PATH=$CERTPATH/" .env
Suggested workaround: Use a different search delimited, e.g. |:
if [ -n "$CERTPATH" ] && [ -n "$KEYPATH" ]
then
sed -i "s|#COTURN_TLS_CERT_PATH=.*|COTURN_TLS_CERT_PATH=$CERTPATH|" .env
sed -i "s|#COTURN_TLS_KEY_PATH=.*|COTURN_TLS_KEY_PATH=$KEYPATH|" .env
fi
Cheers,
Stephan
The text was updated successfully, but these errors were encountered:
The following sed line fails if the https proxy feature is deactivated and an absolute certificate or private key file path is specified:
docker/scripts/setup
Line 139 in 0dd3d9a
Suggested workaround: Use a different search delimited, e.g.
|
:Cheers,
Stephan
The text was updated successfully, but these errors were encountered: