add security headers to netlify frontend

pull/1/head
Tao Bojlén 2020-05-19 15:19:01 +00:00
rodzic 94034ee538
commit 3db98cbfa0
1 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -2,6 +2,9 @@
base = "frontend/"
publish = "frontend/build/"
[build.environment]
INLINE_RUNTIME_CHUNK = "false"
[context.develop.environment]
REACT_APP_STAGING = "true"
@ -16,3 +19,11 @@
to = "/index.html"
status = 200
[[headers]]
for = "/*"
[headers.values]
X-Content-Type-Options = "nosniff"
X-Frame-Options = "DENY"
X-XSS-Protection = "1"
Content-Security-Policy = "default-src 'self' https://*.fediverse.space; style-src 'self' 'unsafe-inline'"