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>
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>