SSL for wordpress login and admin section
add define(‘FORCE_SSL_ADMIN’, true); in wp-config.php
edit /etc/apache2/listen.conf and add NameVirtualHost *:443
add a virtualHost section to your httpd.conf
<VirtualHost *:443>
DocumentRoot “var/local/wwwroot/bernhard/”
ServerName bernhard.hensler.net
ErrorLog /var/log/apache2/error_log
TransferLog /var/log/apache2/access_log
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+
LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /etc/apache2/ssl.crt/server.crt
SSLCertificateKeyFile /etc/apache2/ssl.key/server.key
</VirtualHost>