Hi!
It should be wrong Vhost config.
Take a look at: /etc/sentora/configs/apache/httpd-vhosts.conf
Maybe for centOS the path is different.
The panel section should be like this:
Best regards.
It should be wrong Vhost config.
Take a look at: /etc/sentora/configs/apache/httpd-vhosts.conf
Maybe for centOS the path is different.
The panel section should be like this:
Code:
# Configuration for Sentora control panel.
<VirtualHost *:80>
ServerAdmin zadmin@localhost
DocumentRoot "/etc/sentora/panel/"
ServerName panel.domain.com
<Directory "/etc/sentora/panel/">
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>
AddType application/x-httpd-php .php
php_admin_value sp.configuration_file "/etc/sentora/configs/php/sp/sentora.rules"
ErrorLog "/var/sentora/logs/sentora-error.log"
CustomLog "/var/sentora/logs/sentora-access.log" combined
CustomLog "/var/sentora/logs/sentora-bandwidth.log" common
ErrorDocument 510 /etc/static/errorpages/510.html
ErrorDocument 404 /etc/static/errorpages/404.html
ErrorDocument 403 /etc/static/errorpages/403.html
ErrorDocument 500 /etc/static/errorpages/500.html
</VirtualHost>
Best regards.