(06-25-2015, 07:16 PM)Me.B Wrote: You have issue with how you added SSL to FTP.I haven't set anything for the FTP. My vhost config settings are:
What guide you used? Config files?
M B
In port 80 virtual host config I have a redirect:
Code:
Redirect Permanent / https://panel.mydomain.com/
and on port 443 I have:
Code:
<VirtualHost *:443>
SSLEngine on
SSLProtocol SSLv3
SSLCertificateFile /etc/pki/tls/public.crt
SSLCertificateKeyFile /etc/pki/tls/private.key
SSLCACertificateFile /etc/pki/tls/intermediate.crt
ServerAdmin admin@mydomain.com
DocumentRoot "/etc/sentora/panel/"
ServerName panel.mydomain.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>
</VirtualHost>