-sslcert parameter ignored?
Posted: Thursday 26 April 2018 9:46
Version: 3.8153
Platform: Ubuntu 16.04.3
i am trying to implement another ssl certificate.. i know there are a lot of questions about it, but can't find my situation.
My problem is that it looks like -sslcert is ignored in the startup script.
for testing purpose, i renamed server_cert.pem to server_cert_test.pem. and edited the sh script (see below)
restart domoticz... but website is not running... in log there is no "TCPSERVER: shared server started...".
next i renamed file back to server_cert.pem, but kept the sh script the same (as below).. restart domoticz.. and now the site is running (including the log of the TCPServer started).
What am i missing, is it still supported the sslcert parameter? where to look?
Platform: Ubuntu 16.04.3
i am trying to implement another ssl certificate.. i know there are a lot of questions about it, but can't find my situation.
My problem is that it looks like -sslcert is ignored in the startup script.
for testing purpose, i renamed server_cert.pem to server_cert_test.pem. and edited the sh script (see below)
restart domoticz... but website is not running... in log there is no "TCPSERVER: shared server started...".
next i renamed file back to server_cert.pem, but kept the sh script the same (as below).. restart domoticz.. and now the site is running (including the log of the TCPServer started).
What am i missing, is it still supported the sslcert parameter? where to look?
Code: Select all
DAEMON=/usr/domoticz/$NAME
DAEMON_ARGS="-daemon"
DAEMON_ARGS="$DAEMON_ARGS -www 0"
DAEMON_ARGS="$DAEMON_ARGS -sslwww 10003"
DEAMON_ARGS="$DAEMON_ARGS -sslcert /usr/domoticz/server_cert_test.pem"
DAEMON_ARGS="$DAEMON_ARGS -log /usr/domoticz/log.txt"
DAEMON_ARGS="$DAEMON_ARGS -syslog"