this repo has no description
1[build]
2 command = "zola build"
3 publish = "public/"
4
5[context.deploy-preview]
6 command = "zola build --drafts"
7
8[[headers]]
9 for = "/*"
10 [headers.values]
11 # Disable Google cohort tracking
12 Permission-Policy = "interest-cohort=()"
13 # Disallow showing the website in frames
14 X-Frame-Options = "DENY"
15 X-XSS-Protection = "1; mode=block"
16 X-Content-Type-Options = "nosniff"
17 Content-Security-Policy = "default-src 'self'; script-src 'self' https://plausible.io; connect-src https://plausible.io; img-src https:"
18 Permissions-Policy = "accelerometer=(), ambient-light-sensor=(), autoplay=(), battery=(), camera=(), cross-origin-isolated=(), display-capture=(), document-domain=(), encrypted-media=(), execution-while-not-rendered=(), execution-while-out-of-viewport=(), fullscreen=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), navigation-override=(), payment=(), picture-in-picture=(), publickey-credentials-get=(), screen-wake-lock=(), sync-xhr=(), usb=(), web-share=(), xr-spatial-tracking=(), clipboard-read=(), clipboard-write=(), gamepad=(), speaker-selection=()"
19 Referrer-Policy = "no-referrer-when-downgrade"
20
21[[headers]]
22 for = "/.well-known/webfinger"
23 [headers.values]
24 Content-Type = "application/jrd+json; charset=utf-8"
25
26[[redirects]]
27 from = "/post"
28 to = "/"
29 force = true
30
31[[redirects]]
32 from = "/.well-known/webfinger"
33 to = "/finger/:user.json"
34 status = 200
35 query = { resource = ":user" }
36
37[[plugins]]
38 package = "netlify-plugin-webmentions"
39
40 [plugins.inputs]
41 feedPath = "atom.xml"
42
43[[plugins]]
44 package = "netlify-plugin-submit-sitemap"