I'm trying to set up my SSL certificate for my site. However my site responds with this site can't be reached
in Chrome.
In the certificate manager, it shows my cert's associated resource is my ELB. The ELB is setup for HTTPS, port 443. Its target group is HTTP, port 80. The site works properly when browsing http/80. I was thinking my setup would mean a user hits HTTPS ELB, and the ELB would then use port 80 to serve my site.
httpstat https://www.ereverse.com
outputs:
> curl -w <output-format> -D <tempfile> -o <tempfile> -s -S ereverse.com curl error: curl: (7) Failed to connect to www.ereverse.com port 443: Connection refused
I should also note my app is running via docker, where it's doing a run with -p 80:5000
and the Dockerfile
has EXPOSE 80 443
.