Skip to content
Snippets Groups Projects
Commit 4efe1517 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

disable the key-pins-header until we decide how we want users to input it...

disable the key-pins-header until we decide how we want users to input it because it's causing an issue trying to use a db connection before the db is initialized.
parent cb8ff23f
No related branches found
No related tags found
No related merge requests found
......@@ -172,13 +172,14 @@
(defn- api-security-headers [] ; don't need to include all the nonsense we include with index.html
(merge (cache-prevention-headers)
strict-transport-security-header
(public-key-pins-header)))
;(public-key-pins-header)
))
(defn- index-page-security-headers []
(merge (cache-prevention-headers)
strict-transport-security-header
content-security-policy-header
(public-key-pins-header)
;(public-key-pins-header)
{"X-Frame-Options" "DENY" ; Tell browsers not to render our site as an iframe (prevent clickjacking)
"X-XSS-Protection" "1; mode=block" ; Tell browser to block suspected XSS attacks
"X-Permitted-Cross-Domain-Policies" "none" ; Prevent Flash / PDF files from including content from site.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment