Ido Barash
Ido Barash

Reputation: 5122

Google Cloud SSL/HTTPS Load Balancer

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

Answers (2)

akohout
akohout

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

  • public key => the crt file
  • certificate chain => your ca file(s concatenated)
  • private key => your .key

Upvotes: 2

Iso J
Iso J

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

Related Questions