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}
- Create subdomain for {pleskpaneldomain}
- SSH into server
Run:
nano /var/www/vhosts/{pleskpaneldomain}/conf/vhost_ssl.conf
Add:
SSLProxyEngine on ProxyRequests off ProxyPass / https://127.0.0.1:8443/ ProxyPassReverse / https://127.0.0.1:8443/
Run
/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain {pleskpaneldomain}
Done!
→