AWS ACM SSL Protocol error

后端 未结 1 962
南旧
南旧 2021-01-26 05:52

I am working with an AWS EC2 instance (amazon Linux, elastic IP) trying to set up SSL through ACM. The certificate is verified and the load balancer is passing the health check

相关标签:
1条回答
  • 2021-01-26 06:19

    Your load balancer will be the spot where SSL terminates, and then carries on to your insecure servers running on port 80. You should change your EC2 instance back to port 80.

    Yes, you should point a CNAME at your load balancer from the domain the certificate was created for. You do not get an IP for ELB's, as there may actually be many load balancers behind the scenes, which you don't see, all hiding behind the AWS CNAME.

    Summary:

    • Change your EC2 to serve traffic on port 80 again
    • Make ELB accept connections on port 443, and send to 80 on the instance
    • Assign a valid domain to your ELB that the certificate is valid for
    • Profit.

    Cheers

    0 讨论(0)
提交回复
热议问题