Reputation: 113
I have some questions on setting up SSL certs on AWS setup (ELB + EC2)..
Thanks!
Upvotes: 0
Views: 92
Reputation: 1032
You can use ELB in one of two ways:
SSL un-encrytpion at the ELB
In this mode, you'll give the ELB the cert and key. It will un-encrypt the request and pass it to your servers unencrypted. The benefit of this is that you can reduce the CPU load of your servers.
The ELB just acts as a passthrough.
The ELB can act as a dumb passthrough. It won't need the cert or key. In order to set it up this way, instead of using the HTTPS option, set it as TCP port.
Upvotes: 1