How do I host multiple SSL websites on a single EC2 instance using Amazon Elastic Load Balancers?

Posted by Developr on Server Fault See other posts from Server Fault or by Developr
Published on 2013-10-03T12:40:52Z Indexed on 2013/11/12 21:57 UTC
Read the original article Hit count: 308

If I have 3 separate websites which all require SSL (separate certificates) that I want to host on the same EC2 instance(s) across multiple availability zones so that we have the ability to scale and be highly available, how do I achieve this using ELBs in my Amazon VPC?

Each site requires a separate IP address, so I have added multiple private IPs to the EC2 instance, but I am unsure how to bind the ELB to a certain IP on the instance.

I was also able to setup multiple ELB pointing to the same instance, but again, I am not seeing any way to bind each ELB to a separate IP on the instance.

If this is not possible, what is the best option?

  • Run each site on a separate EC2 instance / ELB combo (expensive and harder to maintain)
  • Give each site a separate public IP and use Route 53 to do the load balancing (seems like a hack)
  • Use a different load balancer option such as HAProxy that should be able to work like a normal load balancer appliance.

Please help!

© Server Fault or respective owner

Related posts about amazon-ec2

Related posts about amazon-web-services