How to get FREE SSL certificate via AWS Certificate Manager

Avatar admin | January 8, 2020 1 View 0 Likes 0 Ratings

1 View 0 Ratings Rate it

This amazon web services Website tutorial shows how to install SSL Certificate on AWS Website using AWS Certificate manager and how easy it is to get up and running with them.

# Learn how to Create SSL certificate from AWS Certificate manager with a demo.
# How to install SSL Certificate.
# Usage of AWS Certificate manager.
# AWS Certificate manager Deep Dive.

# Setup a webserver
#!/bin/bash
sudo yum update -y
sudo yum install -y httpd24 php72 php72-mysqlnd php72-mbstring
sudo yum install -y php72-mcrypt php72-zip php72-intl php72-gd
sudo service httpd start
sudo chkconfig httpd on
sudo groupadd www
sudo usermod -a -G www ec2-user
sudo usermod -a -G www apache
sudo chown -R ec2-user /var/www
sudo chgrp -R www /var/www
sudo chmod 2775 /var/www
find /var/www -type d -exec sudo chmod 2775 {} +
find /var/www -type f -exec sudo chmod 0664 {} +
sudo chmod 0777 /var/lib/php/7.2/session
sudo service httpd restart
sudo yum install ruby
sudo yum install wget
cd /home/ec2-user
wget https://aws-codedeploy-eu-west-1.s3.a…
chmod +x ./install
sudo ./install auto
sudo service codedeploy-agent start

Then create a CloudFront for the site
Set the CNAME value of the domain in cloudfront settings.
Now point your domain to cloudfront.


1 View 0 Ratings Rate it

Written by admin