• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved plesk panel http/2

nMLxTMJTZ

Regular Pleskian
It's possibile to enable http/2 also for panel?
i set
[webserver]
nginxHttp2 = true
in panel.ini but not work still in http1.1
 
Hi camaran,

the setting in your "panel.ini"
Code:
[webserver]
nginxHttp2 = true
is for your WEBSERVER ( apache and nginx ), while the Plesk Control Panel uses it's very own webserver ( sw-cp-server ).

If you desire "http/2" - support for your Plesk Control Panel, pls. consider to open a feature request at


and describe your desire(s) and your buisiness case for your request.
 
It's possibile to enable http/2 also for panel?
i set
[webserver]
nginxHttp2 = true
in panel.ini but not work still in http1.1

Of course it is possible --

Edit /etc/sw-cp-server/conf.d/plesk.conf and append 'http2' after ssl ie.

Code:
listen x.x.x.x:8443 ssl http2;
listen 127.0.0.1:8443 ssl http2;

Also, to improve the panel's ssl/web security you can create customSSL_plesk.inc in /etc/sw-cp-server/conf.d with:

Code:
server_tokens   off;
ssl_ecdh_curve  secp384r1;
ssl_dhparam     /etc/ssl/plesk/dhparam.pem;
add_header    Strict-Transport-Security 'max-age=15768000; includeSubdomains' always;
add_header    X-Robots-Tag none;
ssl_stapling    on;
ssl_stapling_verify     on;
ssl_trusted_certificate /etc/ssl/plesk/YourCACert.pem;
resolver        127.0.0.1 valid=300s;
resolver_timeout        10s;

Please read up on the options above before applying the security tip.

Edit - Almost forgot.. You need to obviously restart the panel ie. service sw-cp-server restart

Cheers
 
Last edited:
Back
Top