Set up apache for https
From LinuxIntro
This article describes how you can secure your webpage running on apache2 with https. You create demo-certificates yourself for this. This is for SUSE Linux, for Fedora, I recommend http://www.linux-sxs.org/internet_serving/apache2.html
This article assumes you know about SSL, https and certificates.
- set up apache
- open a console as root
- set up your Certification authority and create dummy-certificates
- get your SSL Configuration from the given template
- change your SSL Configuration
- restart apache2
- make sure you have content to show
- test your configuration
/usr/bin/gensslcert
cd /etc/apache2/vhosts.d cp vhost-ssl.template vhost-ssl.conf
have apache2 start per default with SSL. To do this, edit /etc/sysconfig/apache2: replace
APACHE_SERVER_FLAGS=""
with
APACHE_SERVER_FLAGS="SSL"
/etc/init.d/apache2 restart
echo "this is a test" >> /srv/www/htdocs/index.html
wget --no-check-certificate --no-proxy https://localhost