httpd.confでこのコードを使用しています
<VirtualHost *:4080>
# This will enable the Rewrite capabilities
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
ServerAdmin serveradmin
DocumentRoot "/etc/zpanel/panel/"
ServerName panel.mydomain.com
ServerAlias *.panel.mydomain.com
AddType application/x-httpd-php .php
<Directory "/etc/zpanel/panel/">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
安全な ://domain.com:4080 にリダイレクトするにはhttp://domain.com:4080が必要ですが、これは発生していますが、証明書が機能していません
自動リダイレクトコードを削除すると
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) [https://%{HTTP_HOST}%{REQUEST_URI}][1]
goto secure: //domain.com:4080 ブラウザで自分の証明書が表示されます。
httpsへのcpanels自動リダイレクトのようなものが必要です
http://ziing.net:2087/ を試してください