From 73603079e29bc89c54296a9e12b5a779cd84c023 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Thu, 2 May 2024 23:18:19 +0200 Subject: feat: serve a very basic html template --- config.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 config.toml (limited to 'config.toml') diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..cdbe7d1 --- /dev/null +++ b/config.toml @@ -0,0 +1,23 @@ +base_url = "https://searchix.alanpearce.eu" + +[content-security-policy] +default-src = [ + "'none'", +] +image-src = [ + "'self'", + "http://gc.zgo.at", +] +script-src = [ + "'self'", + "http://gc.zgo.at", +] +style-src = [ + "'unsafe-inline'", +] +require-trusted-types-for = [ + "'script'", +] + +[headers] +x-content-type-options = "nosniff" -- cgit 1.4.1