• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Disable HTTP header X-Powered-By: PleskLin

  • Thread starter Deleted member 121791
  • Start date
D

Deleted member 121791

Guest
Plesk 11 inserts in Apache and NGinx config files lines like
Header add X-Powered-By PleskLin
or
add_header X-Powered-By PleskLin;


How can i disable this behaviour globally?
 
You can edit:

Code:
/usr/local/psa/admin/conf/templates/default/domain/domainVirtualHost.php

and then thereafter you run

Code:
 /usr/local/psa/admin/sbin/httpdmng --reconfigure-all
 
There's a documentation for customizing Apache and NGINX templates here. Essentially you create /usr/local/psa/admin/conf/templates/custom/ folder and place your customized template versions there. That way your changes will not be lost on the next package update (i.e. Panel upgrade or earlier), but you may miss important changes in the original templates this way (and have various weird problems in the future).

Alternatively, you may do as abdi suggested. Be warned though, your changes will be lost on next package update.

So, choose your poison.
 
Last edited:
Thank Nikolay,
The file need change is /usr/local/psa/admin/conf/templates/custom/nginxDomainVirtualHost.php
then run command /usr/local/psa/admin/sbin/httpdmng --reconfigure-all.
Work for me!
 
Let me revive the thread to say it is in /usr/local/psa/admin/conf/templates/default/server.php on the current Plesk version.
 
Back
Top