this repo has no description
1[build]
2 command = "zola build"
3 publish = "public/"
4
5[context.deploy-preview]
6 command = "zola build --drafts --base-url $DEPLOY_PRIME_URL"
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 X-Clacks-Overhead = "GNU Terry Pratchett"
18 Content-Security-Policy = "default-src 'self'; script-src 'self' https://plausible.io; connect-src https://plausible.io; img-src https:"
19 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=()"
20 Referrer-Policy = "no-referrer-when-downgrade"
21
22[[headers]]
23 for = "/.well-known/webfinger"
24 [headers.values]
25 Content-Type = "application/jrd+json; charset=utf-8"
26
27[[redirects]]
28 from = "/post"
29 to = "/"
30 force = true
31
32[[redirects]]
33 from = "/.well-known/webfinger"
34 to = "https://fosstodon.org/.well-known/webfinger?resource=acct:hauleth@fosstodon.org"
35 status = 200
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"