techman85
techman85

Reputation: 3

Need assistance setting up reverse proxy using Docker and Nginx

I installed Superset using Docker and am trying to setup reverse proxy using Nginx to utilize HTTPS with a cert from our CA. I am currently getting the following error: PEM_read_bio_PrivateKey() failed. Seems like it is not able to authenticate the key. Can anyone assist with this issue?

Upvotes: 0

Views: 349

Answers (1)

Craig Rueda
Craig Rueda

Reputation: 36

Does your private key have a passphrase on it? If so, try this on your key file:

openssl rsa -in with_pass.pem -out without_pass.pem

Upvotes: 1

Related Questions