I have an EC2 instance that is using Amazon\'s custom linux install with built in apache. This install also has openssl installed. That being said, there does not appear t
A summary of what needs to be done to enable SSL on apache server on EC2:
NameVirtualHost *:443ServerName www.example.com # other configurations SSLEngine on SSLCertificateFile /etc/httpd/conf/ssl.crt/mydomain.crt SSLCertificateKeyFile /etc/httpd/conf/ssl.key/mydomain.key
Finally, don't forget to open port 443 on your EC2 instance