Reputation: 5122
I am trying to set an HTTP load balancer with SSL. I have two files - certificate.pem and unencryptedkey.pem.
But the UI of google asks for three fields:
What goes where and where do I get the third one?
I managed to use only 2 but the browser asks for permission and that is wrong.
Upvotes: 1
Views: 1479
Reputation: 1811
When you buy the SSL certificate you should get some more files. In my case, I got a .ca file (certificate chain), a .crt file (the certificate), a .csr file (the request), and a .key file (your private key)
You need
Upvotes: 2
Reputation: 199
My guess is that you have created the certificates, i.e. you haven't purchased them from some certificate authority. With self-signed certificates browser warns you, since certificate validity can't be verified from a certificate authority.
If this is the case, you should do some learning regarding certificates and how they work.
Upvotes: 1