mod_ssl Fedora 13
How to install mod_ssl on Fedora 13
- Run the mod_ssl install command
yum install mod_ssl
How to configure mod_ssl on Fedora 13
- Open the mod_ssl Apache configuration file
gedit /etc/httpd/conf.d/ssl.conf
- Enable name-based virtual hosting on port 443
- Add the following text just before the SSL Virtual Host Context comment
# Use name-base virtual hosting
NameVirtualHost *:443
- Disable the default https host
- Comment out all text following the SSL Virtual Host Context comment
- Save and close the file
- Restart the Apache HTTP Server
service httpd restart