Reputation: 721
So far i did below configuration.
Now i access my website directly www.app.xxtrasc.com
Next want to enable https
Now how i can attached this certificate to my web site so that i can access https://www.app.xxtrasc.com
Upvotes: 0
Views: 2331
Reputation: 151
You cannot use ACM to directly install your ACM Certificate on your AWS based website or application https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-install.html You must use one of the following services:
On AWS I recommend using an ELB an placing your EC2 instances behind this ELB. This will allow you to select your ACM certificate from ELB itslef. Please read following doc to use classic load balancer with HTTPS https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/ssl-server-cert.html
Upvotes: 1
Reputation: 166
If you want to enable SSL on your site, you need to purchase SSL certificate. You can purchase it with Godaddy and then setup it on AWS server. Without SSL certificate, your https site won't work.
Upvotes: 0