• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Issue Set Webserver Option Globally

Where can I set Webserver Options like Header in Plesk globally?
How can I overwirte existing configs on each Site?

Where can I set the absolutely standard Security Headers?
Like

Code:
add_header X-Frame-Options "SAMEORIGIN" always;
add_header x-xss-protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer" always;
add_header X-Download-Options "noopen" always;
add_header X-Permitted-Cross-Domain-Policies "none" always;
add_header X-Robots-Tag "all" always;
add_header Expect-CT 'max-age=600, enforce';
add_header X-Powered-By Cachify;
add_header Cache-Control 'public, max-age=31536000';

kind regards
 
Back
Top