about summary refs log tree commit diff stats
path: root/netlify.toml
diff options
context:
space:
mode:
authorAlan Pearce2024-06-02 11:57:59 +0200
committerAlan Pearce2024-06-02 11:57:59 +0200
commit0b3c9d92312f47b9590e38663ab13c8f53471332 (patch)
tree69c2837e9cf079e16447c7b3e8448c87cf4d6b4d /netlify.toml
parent016edc6999f9d45184136e50b5b19d34529d087d (diff)
downloadwebsite-0b3c9d92312f47b9590e38663ab13c8f53471332.tar.lz
website-0b3c9d92312f47b9590e38663ab13c8f53471332.tar.zst
website-0b3c9d92312f47b9590e38663ab13c8f53471332.zip
additionally deploy to netlify for IPv6 (in 2024...)
Diffstat (limited to 'netlify.toml')
-rw-r--r--netlify.toml34
1 files changed, 34 insertions, 0 deletions
diff --git a/netlify.toml b/netlify.toml
new file mode 100644
index 0000000..a218fcd
--- /dev/null
+++ b/netlify.toml
@@ -0,0 +1,34 @@
+[build]
+  publish = "website/public"
+
+[[redirects]]
+  from = "/.well-known/openid-configuration"
+  to = "https://id.alanpearce.eu/.well-known/openid-configuration"
+  status = 302
+
+[[headers]]
+  for = "/*"
+  [headers.values]
+    x-content-type-options = "nosniff"
+    x-xss-protection = "1; mode=block"
+    referrer-policy = "strict-origin-when-cross-origin"
+    strict-transport-security = "max-age=63072000; includeSubDomains; preload"
+    cache-control = '''
+      max-age=300,
+      s-maxage=86400,
+      state-while-revalidate
+    '''
+    content-security-policy = '''
+      default-src 'none';
+      img-src 'self' https://gc.zgo.at;
+      object-src 'none';
+      script-src 'self' https://gc.zgo.at;
+      style-src
+      'sha256-a4TPKWHB0aSu7cV10GthTEySTJ0w4r0bw6Q8JsNYMbk='
+      'sha256-gyxzfgCOxeAAL8URUdaW2nHYDOr9bzbwFjgSqi7D+8U=';
+      form-action 'none';
+      base-uri 'self';
+      connect-src https://alanpearce-eu.goatcounter.com/count;
+      frame-ancestors 'https://kagi.com';
+      require-trusted-types-for "'script'"
+'''