SSL not working in CherryPy -
i've seemingly done according docs ssl not work.
here's cherrypy settings.conf
:
[global] request.show_tracebacks = false server.socket_port = 443 server.thread_pool = 10 log.screen = true log.error_file = '/root/website/web.log' log.access_file = '/root/website/access.log' cherrypy.server.ssl_module = 'pyopenssl' cherrypy.server.ssl_certificate = "/etc/ssl/website/addtrustexternalcaroot.crt" cherrypy.server.ssl_private_key = "/etc/ssl/website/btcontract_com.key" cherrypy.server.ssl_certificate_chain = "/etc/ssl/website/chain.crt"
if try load site.com:443
in browser works without using certificate.
if try https://site.com
browser says there's ssl connect error.
cherrypy
error , connection logs contain nothing @ if not getting these https
requests. i'm not sure if python has built in ssl support did installed pyopenssl
. what's going on , how can fix this?
there change in version 3.2.5 broke ssl support. hasn't been fixed yet (as of version 3.6.0), there patch suggested in issue 1298 if need use 1 of these versions.
Comments
Post a Comment