RE: SSL issues
04-24-2016, 08:00 PM
(This post was last modified: 04-24-2016, 08:02 PM by datatab.)
Did you have :
Code:
<VirtualHost *:443>
ServerAdmin zadmin@localhost
DocumentRoot "/var/sentora/hostdata/zadmin/public_html/[SOME_HOST]"
ServerName [SOME_HOST]
ErrorLog "/var/sentora/logs/sentora-error.log"
CustomLog "/var/sentora/logs/sentora-access.log" combined
CustomLog "/var/sentora/logs/sentora-bandwidth.log" common
AddType application/x-httpd-php .php
<Directory "/var/sentora/hostdata/zadmin/public_html/[SOME_HOST]">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/[SOME_CRT]
SSLCertificateKeyFile /etc/apache2/ssl/[SOME_KEY]
SSLCACertificateFile /etc/apache2/ssl/[SOME_CRT_BUNDLE]
</VirtualHost>