Use the port override feature in Module Admin>Apache Coinfig>Override a virtual host>select domain>Port Override: 443
That is what it was built for I use it for a couple subdomains (billing and signup) and seems to work just fine.
Also remember to add LISTEN 443 under LISTEN 80 in httpd.conf
Also, that s where you would add your SSL info, similar too:
in Custom Entry for that domain. (edit paths and crt/key names to match yours)
That is what it was built for I use it for a couple subdomains (billing and signup) and seems to work just fine.
Also remember to add LISTEN 443 under LISTEN 80 in httpd.conf
Also, that s where you would add your SSL info, similar too:
Code:
SSLEngine on
SSLCertificateFile C:/zpanel/bin/apache/ssl_certs/__.hosting.com.crt
SSLCertificateKeyFile C:/zpanel/bin/apache/ssl_certs/__.hosting.com.key
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
CustomLog c:/zpanel/logs/ssl/ssl_signup_request.log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
in Custom Entry for that domain. (edit paths and crt/key names to match yours)