Question
How to prevent clickjacking using the Apache/nginx directives on the Plesk server?

Answer
To prevent clickjacking, add the X-Frame-Options directive with the DENY value to Apache and nginx configuration of a domain:

Log in to Plesk.
Go to Domains > example.com > Apache & nginx Settings.

For Apache, add this line to the Additional directives for HTTP and Additional directives for HTTPS fields:

Header set X-Frame-Options DENY

For nginx, add this line to the Additional nginx directives field:

add_header X-Frame-Options DENY;

Note: This configuration may break some Roundcube options.

Was this answer helpful? 0 Users Found This Useful (0 Votes)