Accessing Plesk Panel on 443

I wanted customers to access the Plesk panel without using the port number so here's what I did:

How I made https://{pleskpaneldomain}:8443 available from https://{pleskpaneldomain}

  1. Create subdomain for {pleskpaneldomain}
  2. SSH into server
  3. Run:

    nano /var/www/vhosts/{pleskpaneldomain}/conf/vhost_ssl.conf
    
  4. Add:

    SSLProxyEngine on
    ProxyRequests off
    ProxyPass / https://127.0.0.1:8443/
    ProxyPassReverse / https://127.0.0.1:8443/
    
  5. Run

    /usr/local/psa/admin/sbin/httpdmng --reconfigure-domain {pleskpaneldomain}
    

Done!

Source 1

Source 2