Posts: 1
Threads: 0
Joined: Aug 2015
Reputation:
0
Thanks: 0
Given 0 thank(s) in 0 post(s)
RE: Problem With CentOS 7 SSL Problem
08-10-2015, 04:37 PM
Since no one's replied to this, I'll share how I fixed it.
In your /etc/httpd/conf.d/ssl.conf, add this to the appropriate section:
# General setup for the virtual host, inherited from global configuration
ServerAdmin your@email.com
DocumentRoot "/etc/sentora/panel/"
ServerName your.server.com
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 "/etc/sentora/panel/">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>