Good morning,
I successfully start cherrypy 3.2.0 engine in HTTP OR HTTPS :
# ssl variable commes input parameters. Bellow cherrypy configuration is fully configured
if ssl:
print('Setting up SSL')
cherrypy.server.ssl_certificate = "conf/private/" + platform.node() + ".crt"
cherrypy.server.ssl_private_key = "conf/private/" + platform.node() + ".key"
'''
----------------------------------
Start server instance
----------------------------------
'''
if hasattr(cherrypy.engine, 'block'):
# 3.1 syntax
cherrypy.engine.start()
cherrypy.engine.block()
else:
# 3.0 syntax
cherrypy.server.quickstart(cherrypy.root, config=py_app_conf)
cherrypy.engine.start()
So, is it possible to configure cherrypy to start both in http AND https in the same cherrypy server ?
Thanks for ypur reply.
You need to have two servers on different ports: Multiple servers/ports. Also there is a multi-server config feature that seems to be undocumented, see if it works for you, refer to
_server_namespace_handler()
function in_cpconfig.py
.