2 from web.wsgiserver import CherryPyWSGIServer
4 CherryPyWSGIServer.ssl_certificate = "cacert.pem"
5 CherryPyWSGIServer.ssl_private_key = "privkey.pem"
7 urls = ("/.*", "hello")
8 app = web.application(urls, globals())
13 return "Hello, world!"
19 if __name__ == "__main__":