Hi,
I just share my test...
- Change https value to yes in janus.transport.http.cfg.
- I execute Janus and the secure webserver.
I used this python code in shell.
-------------------------------
import BaseHTTPServer, SimpleHTTPServer
httpd = BaseHTTPServer.HTTPServer(('0.0.0.0', 4443),
SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket (httpd.socket,
keyfile="/opt/janus/share/janus/certs/mycert.key",
certfile='/opt/janus/share/janus/certs/mycert.pem', server_side=True)
---------------------------------------------------------
- Connect to "
https://1..1.1:4443" on Chrome. But I saw the error page "Your connection is not private".
(This is because test certificate files)
Click ADVANCED -> Click "Proceed to 125.143.7.89 (unsafe)"
After that I could see the Janus page.
Hope this helps~
2017년 8월 16일 수요일 오후 3시 43분 14초 UTC+9, Ayush Rastogi 님의 말: