J.Wick
Regular Pleskian
I'm kind of shocked no one has requested or written a guide on making the Plesk Login to only allow login in from a single URL, not the VhostDomain.com:8443 which produces an insecure SSL warning.
Is there a trick to making all domains server wide forward to https://TheProperPleskLoginURL.com:8443 ?
Also, this would help with security, and also when PCI-DSS scanners like TrustWave come by to stop bothering with it. As it stands Trustwave really complains about Plesk and the many small insecure nuances that are left open.
I tried this with an .htaccess and wasn't able to get it working.
Is there a trick to making all domains server wide forward to https://TheProperPleskLoginURL.com:8443 ?
Also, this would help with security, and also when PCI-DSS scanners like TrustWave come by to stop bothering with it. As it stands Trustwave really complains about Plesk and the many small insecure nuances that are left open.
I tried this with an .htaccess and wasn't able to get it working.
Code:
RewriteEngine on
RewriteCond %{SERVER_PORT} 8443
RewriteRule ^(.*)$ https://plesk.domain.net/$1 [R=301,L]