I am trying to run Bottle on top of Cherrypy\'s server. I want to get SSL Support.
So far I have tried this:
from bottle import Bottle, route from ch
Try using the following:
import web from web.wsgiserver import CherryPyWSGIServer from web.wsgiserver.ssl_builtin import BuiltinSSLAdapter ssl_cert = "path/to/ssl_certificate" ssl_key = "path/to/ssl_private_key" CherryPyWSGIServer.ssl_adapter = BuiltinSSLAdapter(ssl_cert, ssl_key, None)