Hi guys,

Anybody knows how to disable TLS renegotiation in webpy? I can't find any 
in guide in the pyopenssl API

Here is my code snippet:

import web
from web.wsgiserver import CherryPyWSGIServer
CherryPyWSGIServer.ssl_certificate = 
"path/to/ssl_certificate"CherryPyWSGIServer.ssl_private_key = 
"path/to/ssl_private_key"

urls = ("/.*", "hello")
app = web.application(urls, globals())
class hello:
    def GET(self):
        return 'Hello, world!'
if __name__ == "__main__":
    app.run()

Thanks! 

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/webpy?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to