Hey
Question time again.
I'm trying to install a cert in apache (ubuntu server). This is the process i've followed so far:
1. Generate csr file
2. Purchase cert, using csr to generate cert files.
3. Downloaded cert file
4. Copied key file (generated on server) as well as cert file (from cert provider), as well as a file called "Apache_Plesk_Install.txt" (cert was purchased from network solutions) into the /etc/ssl folder
5. Changed /etc/apache2/apache2.conf file by adding the following:
<VirtualHost *:443>
DocumentRoot "/var/www"
SSLEngine on
SSLCertificateFile /etc/ssl/WWW.MYDOMAINNAME.COM.crt
SSLCertificateKeyFile /etc/ssl/www_mydomainname_com.key
SSLCertificateChainFile /etc/ssl/Apache_Plesk_Install.txt
</VirtualHost>
6. Restarted apache using stop then start
7. Cannot acces site using https://
8. Can still access via http://
Am I even following the correct process here? Total Linux / Apache noob, so help would be appreciated.
Question time again.
I'm trying to install a cert in apache (ubuntu server). This is the process i've followed so far:
1. Generate csr file
2. Purchase cert, using csr to generate cert files.
3. Downloaded cert file
4. Copied key file (generated on server) as well as cert file (from cert provider), as well as a file called "Apache_Plesk_Install.txt" (cert was purchased from network solutions) into the /etc/ssl folder
5. Changed /etc/apache2/apache2.conf file by adding the following:
<VirtualHost *:443>
DocumentRoot "/var/www"
SSLEngine on
SSLCertificateFile /etc/ssl/WWW.MYDOMAINNAME.COM.crt
SSLCertificateKeyFile /etc/ssl/www_mydomainname_com.key
SSLCertificateChainFile /etc/ssl/Apache_Plesk_Install.txt
</VirtualHost>
6. Restarted apache using stop then start
7. Cannot acces site using https://
8. Can still access via http://
Am I even following the correct process here? Total Linux / Apache noob, so help would be appreciated.