[Twisted-Python] Serving WSGIResource via SSL endpoint

Tobias Oberstein tobias.oberstein at tavendo.de
Fri Aug 15 03:48:34 MDT 2014


>generated a .key file and a .crt file with openssl, and then cat'd them together to make a pem, and then changed the endpoint to be...
>   endpoint = 'ssl:port=8000:privateKey=/path/to/key.pem'

you could try to not concat key and cert, but leave them separate:

endpoint = 'ssl:port=8000:privateKey=/path/to/key.pem;certKey=/path/to/cert.pem'

/Tobias


More information about the Twisted-Python mailing list