Cherrypy 3.2.0 : starting engine to run both HTTP

2019-07-18 05:19发布

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.

1条回答
2楼-- · 2019-07-18 06:05

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.

查看更多
登录 后发表回答