I am trying to start my TURN server with TLS enabled. To start the server, I use the following line:
daemon --user=$USER $TURN $OPTIONS --tls-listening-port 3478 --cert /root/cert_2014_11/my_domain_nl.crt --pkey /root/cert_2014_11/my_domain_nl.key --CA-file /root/cert_2014_11/PositiveSSLCA2.crt
Environment variables are set in the configuration file. The server works fine without TLS using the same start line, but if I add three arguments related to SSL, the server is still unavailable through TLS. I tried setting a different port for the SLL instead of the standard port, but it still didn't work. No matter what I do, I can get to the server without SLL, but over TLS I can not reach it. The certificate chain that I use, if that's good, I use it for our website as well.
source share