Exatom tags can be installed on websites that have a Content Security Policy (CSP). Typically, you will need to reach out to your website server, network, or IT department to request changes for this.
Option 1: Add Exatom to the default Content Security Policy
Use the default-src as CSP directive and add *.exatom.io to the list of allowed sources.
Example of a new Content Security Policy
- Content-Security-Policy: default-src 'self' *.exatom.io
Example of an existing Content Security Policy where Exatom was added to
- Content-Security-Policy: default-src 'self' *.example.com *.example.org *.exatom.io
Option 2: Add Exatom to the granular Content Security Policy controls
When more granular controls are needed, the following directives can be used script-src, connect-src, style-src and img-src to allow our *.exatom.io domain.
- Content-Security-Policy:
- script-src 'self' *.exatom.io;
- connect-src 'self' *.exatom.io;
- style-src 'self' *.exatom.io;
- img-src 'self' *.exatom.io;