Hello,
I am trying to use KMS with wss on Port 443.
With kurento.conf.json like this...
"websocket": {
"port": 8888,
"secure": {
"port": 11111,
"certificate": "mycertificate.pem",
"password": ""
netstat -l -n gives this...
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 :::8888 :::* LISTEN
tcp6 0 0 :::11111 :::* LISTEN
...and everything works as expected.
However, with kurento-conf.json like this...
"websocket": {
"port": 8888,
"secure": {
"port": 443,
"certificate": "mycertificate.pem",
"password": ""
netstat -l -n gives this...
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 :::8888 :::* LISTEN
It works for every Port >1025. How can I make it listen on Port 443?
Related question: how can I make it listen on a specific IP?
Thanks for you help! It is really appreciated.
Lennart