I have my Wordpress site running on a Ec2 instance , How can connect with it using http.
I have done below configuration in .conf file. Everything in Ec2 file, I can see if I use Bitnami AMI it is very easy to configure but not sure or getting any document which says how we do it in Ec2. Also to note that I have my DNS and nameserver in AWS rOUTE53
I want a secure connection to my website
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
<Directory /var/www/html>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>