Scott
Scott

Reputation: 3344

AWS EB Load Balancer SSL Certificate Page Not Loading?

I've created a public SSL certificate through AWS Certificate Manager and installed it on my EB Classic Load Balancer. The certificate was selectable from the load balancer's menu and the Certificate Manager now says it's "in use". So, I assume everything is set up correctly, but when I visit my site using https:// the page won't load. It just says waiting for ... until it ultimately gives up. Is there a time delay for this to enact or is there something more I need to do?

EDIT: I appreciate the comments thus far, though I'm not sure how to redirect the traffic (kinda new to this). Here is a screenshot of my configuration. enter image description here

Upvotes: 0

Views: 225

Answers (1)

Ankit Deshpande
Ankit Deshpande

Reputation: 3606

Looks like you need to redirect traffic from 443 (AWS ELB) to your backend service.

The same listener that you have configured for http (port 80) > backend service.

443(https) > port
80(http) > port

Edit:

If you are using security groups, you will have to allow incoming traffic on port 443.

Upvotes: 1

Related Questions