CSP is one of the OWASP’s top 10 secure headers and often recommended by security experts or tools to implement it. There are many options to build the policy to enforce how you want to expose your web resources. One of the directives called frame-ancestors which were introduced in CSP version 2 gives more flexibility compared to the X-Frame-Options header. frame-ancestors works in the same fashion as the X-Frame-Options to allow or disallow the resources getting embedded using iframe, frame, object, embed, and applet element. I think X-Frame-Options will be obsolete in the near future when CSP is fully compatible with all the major browsers. As I write, CSP frame-ancestors works with all the latest browser versions except IE.

I don’t know when Microsoft will allow support on IE. You can always check the browser compatibility at Can I Use site. Let’s take a look at the following implementation procedure.

Apache HTTP

mod_headers is the pre-requisite to inject any headers in Apache. Depending on the OS and version but if you are using Ubuntu and Apache 2.4 then you can use a2enmod headers to enable it. Note: all the configuration you can do in either httpd.conf file or any effective configuration file you are using.

DENY from ALL

Similar to X-Frame-Options DENY. If you don’t want any site (including self) to embed then add the following. Save the file and restart the Apache HTTP to take effect.

I tried to embed the site and as you can see it was getting blocked.

Allow from self but DENY others

Similar to X-Frame-Options SAMEORIGIN, you can add the following.

Allow from self and multiple domains

X-Frame-Options didn’t have an option to allow from multiple domains. Thanks to CSP, you can do as below. The above will allow the content to be embedded from self, geekflare.com, gf.dev, geekflare.dev. Change these domains with yours.

Nginx

The concept and directive are the same as above explained in the Apache HTTP section except for the way you add the header. Headers in Nginx should be added under the server block in a corresponding configuration file.

DENY all

DENY all but not self

Allow from multiple domains

The above example will allow embedding content on yoursite.com and example.come. After making changes, don’t forget to restart the Nginx server to test the policy.

WordPress

It depends on how you are hosting WordPress. If self-hosted like a cloud or VPS, then you might be using a web server such as Apache or Nginx. If so, then you can follow the above-mentioned to implement in web server instead of WordPress. However, if you on shared hosting or no access to modify webservers, then you can leverage a plugin. To implement CSP in WordPress, you can use the Content Security Policy Pro plugin.

Verification

Once you are done with the implementation, you can either use browser inbuilt developer tools or a secure headers test tool.

Conclusion

CSP is one of the powerful, secure headers to prevent web vulnerabilities. I hope the above instructions guide you on how to implement frame-ancestors in Apache and Nginx.

How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 3How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 27How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 18How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 9How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 88How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 58How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 9How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 73How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 94How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 22How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 36How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 40How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 40How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 55How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 48How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 30How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 86How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 96How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 95How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 33How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 82How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 64How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 81How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 28How to Implement CSP frame ancestors in Apache  Nginx and WordPress  - 36