From 9c7c9ab183a47bf23769f82148f3127bbfc580ab Mon Sep 17 00:00:00 2001 From: clerie Date: Fri, 10 May 2024 14:07:46 +0200 Subject: [PATCH] hosts/web-2: Fix mime types for gpg and ssh public keys served via clerie.de --- hosts/web-2/clerie.nix | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/hosts/web-2/clerie.nix b/hosts/web-2/clerie.nix index ed5af54..4802739 100644 --- a/hosts/web-2/clerie.nix +++ b/hosts/web-2/clerie.nix @@ -19,28 +19,41 @@ hash = "sha256-GBAclFkcIzCPi8P+UmATw01uzND3EoUYXiytjVnEjtc="; }; locations."/ssh" = { + extraConfig = '' + types { + text/plain pub; + } + ''; root = pkgs.clerie-keys; }; locations."= /ssh/known_hosts" = { alias = pkgs.writeText "known_hosts" (import ../../lib/ssh-known-hosts.nix); extraConfig = '' - types { } default_type "text/plain; charset=utf-8"; + types { } + default_type "text/plain; charset=utf-8"; ''; }; locations."/gpg" = { + extraConfig = '' + types { + text/plain asc; + } + ''; root = pkgs.clerie-keys; }; locations."~ ^/.well-known/openpgpkey/hu/[a-z0-9]+/?$" = { root = pkgs.clerie-keys; extraConfig = '' - types { } default_type application/octet-stream; + types { } + default_type application/octet-stream; add_header Access-Control-Allow-Origin * always; try_files /gpg/clerie@clerie.de =404; ''; }; locations."= /.well-known/openpgpkey/policy" = { extraConfig = '' - types { } default_type application/octet-stream; + types { } + default_type application/octet-stream; add_header Access-Control-Allow-Origin * always; ''; return = "200 ''";