0
votes

Is it possible to configure an AWS Classic Balancer to do something like this:

Client <-- SSL (Signed Certificate) --> ELB <-- SSL (Self-Signed Certificate) --> EC2

Looking at listener configurations, it looks like there is a one to one relationship between the listener and the certificate it uses.

If anyone knows how I could achieve this, being pointed to some documentation would also be helpful.

1

1 Answers

1
votes

You can create a load balancer that listens on both the HTTP (80) and HTTPS (443) ports. If you specify that the HTTPS listener sends requests to the instances on port 80, the load balancer terminates the requests and communication from the load balancer to the instances is not encrypted. If the HTTPS listener sends requests to the instances on port 443, communication from the load balancer to the instances is encrypted.

Create a Classic Load Balancer with an HTTPS Listener