Difference between revisions of "Set up apache for https"
From Linuxintro
imported>ThorstenStaerk (get a new certificate) |
imported>ThorstenStaerk |
||
Line 11: | Line 11: | ||
cp vhost-ssl.template vhost-ssl.conf | cp vhost-ssl.template vhost-ssl.conf | ||
<li>change your SSL Configuration</li> | <li>change your SSL Configuration</li> | ||
− | have apache2 start per default with SSL. To do this, | + | have apache2 start per default with SSL. To do this, edit /etc/sysconfig/apache2. Search for APACHE_SERVER_FLAGS and add SSL like this: |
− | edit /etc/sysconfig/apache2: | ||
− | |||
− | |||
APACHE_SERVER_FLAGS="SSL" | APACHE_SERVER_FLAGS="SSL" | ||
<li>restart apache2</li> | <li>restart apache2</li> |
Revision as of 08:44, 16 October 2013
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 /usr/bin/gensslcert
- get your SSL Configuration from the given template cd /etc/apache2/vhosts.d cp vhost-ssl.template vhost-ssl.conf
- change your SSL Configuration have apache2 start per default with SSL. To do this, edit /etc/sysconfig/apache2. Search for APACHE_SERVER_FLAGS and add SSL like this: APACHE_SERVER_FLAGS="SSL"
- restart apache2 /etc/init.d/apache2 restart
- make sure you have content to show echo "this is a test" >> /srv/www/htdocs/index.html
- test your configuration wget --no-check-certificate --no-proxy https://localhost
get a new certificate
To get a new certificate
- backup your old certificate:
cd cp /etc/apache2/ssl.crt/server.crt .
- create a new certificate, e.g. for newhostname.domain
genssl -n newhostname.domain
- restart apache
/etc/init.d/apache2 restart