Configure OpenSSL

Qasim Ali on July 5th, 2010

Setting up OpenSSL with Ubuntu 10.04 over the apache. First, log on to your server and install Apache: sudo apt-get install apache2 Now, install and enable SSL module: sudo a2enmod ssl sudo /etc/init.d/apache2 reload Creation a directory on this location mkdir /etc/apache2/ssl cd /etc/apache2/ssl Run these following commands openssl genrsa -des3 -out server.key 1024 openssl [...]

Continue reading about How to configure OpenSSL over apache on Ubuntu