I am using the current version of Centos & Zpanel and I can not get the ssl certificate to work. After I installed it and type https://domainname it keeps going to the zpanel login screen.
All the files exist and I am using the correct path.
Can someone please tell me or provide me with some better instructions?
http://forums.sentora.io/showthread.php?...hlight=ssl
1: enable apache2 ssl
Code: (Select All)
sudo service apache2 restart
Setup ssl on you server
2: make a folder to the crt and key files
Code: (Select All)
sudo mkdir /var/zpanel/hostdata/name/ssl
3: Create a Self Signed SSL Certificate
Code: (Select All)
Script /bin/makessl and I type makessl domainname:
echo Switch to the /var/zpanel/hostdata/name/ssl then run this script
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout $1.key -out $1.crt
Domain Name is: Checked
Suhosin is Enabled: Checked
OpenBased Enabled: Checked
Port Override is left blank
IP Override: Left Blank
Customer Entry:
</VirtualHost>
<VirtualHost *:443>
ServerAdmin Email
ServerName cyberchatnet.com
DocumentRoot /var/zpanel/hostdata/philtaylor/public_html/cyberchatnet_com
SSLEngine on
SSLCertificateFile /var/zpanel/hostdata/philtaylor/name/ssl/cyberchatnet.com.crt
SSLCertificateKeyFile /var/zpanel/hostdata/philtaylor/name/ssl/cyberchatnet.com.key
Thanks
All the files exist and I am using the correct path.
Can someone please tell me or provide me with some better instructions?
http://forums.sentora.io/showthread.php?...hlight=ssl
1: enable apache2 ssl
Code: (Select All)
sudo service apache2 restart
Setup ssl on you server
2: make a folder to the crt and key files
Code: (Select All)
sudo mkdir /var/zpanel/hostdata/name/ssl
3: Create a Self Signed SSL Certificate
Code: (Select All)
Script /bin/makessl and I type makessl domainname:
echo Switch to the /var/zpanel/hostdata/name/ssl then run this script
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout $1.key -out $1.crt
Domain Name is: Checked
Suhosin is Enabled: Checked
OpenBased Enabled: Checked
Port Override is left blank
IP Override: Left Blank
Customer Entry:
</VirtualHost>
<VirtualHost *:443>
ServerAdmin Email
ServerName cyberchatnet.com
DocumentRoot /var/zpanel/hostdata/philtaylor/public_html/cyberchatnet_com
SSLEngine on
SSLCertificateFile /var/zpanel/hostdata/philtaylor/name/ssl/cyberchatnet.com.crt
SSLCertificateKeyFile /var/zpanel/hostdata/philtaylor/name/ssl/cyberchatnet.com.key
Thanks