diff --git a/h5bp/security/content-security-policy.conf b/h5bp/security/content-security-policy.conf index c2544f00..b55d3461 100644 --- a/h5bp/security/content-security-policy.conf +++ b/h5bp/security/content-security-policy.conf @@ -11,9 +11,9 @@ # There is no policy that fits all websites, you will have to modify the # `Content-Security-Policy` directives in the example depending on your needs. # -# The example policy below aims to: +# (*) The example policy below aims to: # -# (1) Restrict all fetches by default to the origin of the current website by +# - Restrict all fetches by default to the origin of the current website by # setting the `default-src` directive to `'self'` - which acts as a # fallback to all "Fetch directives" (https://developer.mozilla.org/en-US/docs/Glossary/Fetch_directive). # @@ -24,17 +24,17 @@ # This restriction also means that you must explicitly define from which # site(s) your website is allowed to load resources from. # -# (2) The `` element is not allowed on the website. This is to prevent +# - The `` element is not allowed on the website. This is to prevent # attackers from changing the locations of resources loaded from relative # URLs. # # If you want to use the `` element, then `base-uri 'self'` can be # used instead. # -# (3) Form submissions are only allowed from the current website by setting: +# - Form submissions are only allowed from the current website by setting: # `form-action 'self'`. # -# (4) Prevents all websites (including your own) from embedding your webpages +# - Prevents all websites (including your own) from embedding your webpages # within e.g. the `