I'm trying to get CherryPy to use SSL.
The first issue I encountered was it was not supported on that current version available on Ubuntu, so I've upgraded to the latest version and got it working with self signed certificates.
I then got certificates that are chained, from GoDaddy. I provide them with the output of this command:
openssl req -new -newkey rsa:2048 -nodes -out [private info]
They then returned two files, a .crt and a gd_bundle.crt. The first contains: one -----BEGIN CERTIFICATE----- certificate -----END CERTIFICATE-----
The second contains 3, like above.
Does CherryPy work with chained certificates? I've seen this link that states it needs patching and tried as suggested, but the patch failed and the method did not work.
Please can someone explain what I'm missing or how to resolve this.