Posts

Showing posts from October 29, 2017

Apache Server SSL Certificate Installation online thru www.sslforfree.com/

Apache Server SSL Certificate Installation Note this is Temporary base that certificat take from https://www.sslforfree.com/ for 90 Days go below links and follow step For help...https://www.sslforfree.com/ Requirments;;;;;;;;; 1-Your Domain should be connected with your HostServer 2-You shoud have .CSR and .KEY and .SRT files with location of /root/your_crs.csr /root/your_crt.crt /root/your_key.key First Need to enable your ssl with below command from /etc/apache2/mods-available #a2enmod ssl.load Second Need to some changes in our .conf file from /etc/apache2/sites-available #nano yoursitename.conf (add below line between your <VirtualHost> </VirtualHost> and edit 80 to 443 also) <VirtualHost *:443> ServerAdmin webmaster@localhost ServerName yourdomainname DocumentRoot /yourdirectorypath <Directory /yourdirectorypath/> Options Indexes FollowSymLinks ExecCGI Includes AllowOverride All Require all granted Direc