
Aug. 15, 2014
9:48 a.m.
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