----INSTALLING SSL CERTIFICATE ON APACHE WEB SERVER------- 1. Pre-requisites dpkg -l | grep apache You should get something like ii apache2 2.2.22-1ubuntu1.8 Apache HTTP Server metapackage ii apache2-mpm-worker 2.2.22-1ubuntu1.8 Apache HTTP Server - high speed threaded model If you get no output, install Apache with the command > apt-get install apache2 2. Edit the httpd.conf > vi /etc/apache2/httpd.conf ServerName hostX.ws.nsrc.org DocumentRoot /var/www/html/ SSLEngine On SSLCertificateFile /etc/httpd/conf/hostX.ws.nsrc.org.crt SSLCertificateKeyFile /etc/httpd/conf/hostX.ws.nsrc.org.key ErrorLog logs/ssl.nsrc.error_log CustomLog logs/ssl.nsrc.access_log combined 3. Restart Apache > sudo restart apache2 4. Launch your broswer and visit https://hostX.ws.nsrc.org