-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
54 lines (52 loc) · 1.48 KB
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Build
[build]
publish = "public"
command = "npm run build"
# WWW
[[redirects]]
from = "https://www.hirechrisfinazzo.com/"
to = "https://hirechrisfinazzo.com/"
status = 301
force = false
# Netlify
[[redirects]]
from = "https://hilarious-nougat-10dc4c.netlify.com"
to = "https://hirechrisfinazzo.com/"
status = 301
force = false
# 404
[[redirects]]
from = "*"
to = "/404"
status = 404
[[headers]]
for = "/*"
[headers.values]
cache-control = '''
no-transform'''
Permissions-Policy = "interest-cohort=()"
Upgrade-Insecure-Requests = "1"
Referrer-Policy = "same-origin"
X-Content-Type-Options = "nosniff"
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
Strict-Transport-Security = "max-age=31536000; preload; includeSubDomains"
# Plugins
[[plugins]]
package = "netlify-plugin-csp-generator"
[plugins.inputs]
buildDir = "public"
reportOnly = true
[plugins.inputs.policies]
defaultSrc = "'none'"
fontSrc = "'self' https://ka-f.fontawesome.com"
imgSrc = "'self' https://www.barebones.com data:"
styleSrc = "'self' 'sha256-HpGW2r4UecoRVijHlix6gC/DKgjT6v7iq+hGeZuUUvs=' https://ka-f.fontawesome.com https://fonts.googleapis.com https://fonts.gstatic.com"
scriptSrc = "'self' https://kit.fontawesome.com"
baseUri = "'self'"
manifestSrc = "'self'"
connectSrc = "'self' https://ka-f.fontawesome.com"
objectSrc = "'none'"
formAction = "'self'"
frameAncestors = "'none'"
workerSrc = "'self'"