From 607fdde5fd66564fc953de991c38936150afb847 Mon Sep 17 00:00:00 2001 From: clerie Date: Tue, 29 Nov 2022 20:55:48 +0100 Subject: [PATCH] hosts/web-2: fix data type of meowing --- hosts/web-2/meow.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/web-2/meow.nix b/hosts/web-2/meow.nix index 95a66b2..b1347a4 100644 --- a/hosts/web-2/meow.nix +++ b/hosts/web-2/meow.nix @@ -10,9 +10,9 @@ enableACME = true; forceSSL = true; locations."/" = { - return = ''200 "meow"''; + return = ''200 "meow\n"''; extraConfig = '' - add_header Content-Type text/plain; + types { } default_type "text/plain; charset=utf-8"; ''; }; };