From d0d181c66dccf9d20f74dd867d98409ea884731c Mon Sep 17 00:00:00 2001 From: noe Date: Sat, 6 Jan 2024 13:45:59 -0500 Subject: [PATCH] ingress-proxy: refactor vhosts --- nixos/hosts/ingress-proxy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/ingress-proxy/default.nix b/nixos/hosts/ingress-proxy/default.nix index c351011..69993dd 100644 --- a/nixos/hosts/ingress-proxy/default.nix +++ b/nixos/hosts/ingress-proxy/default.nix @@ -37,9 +37,9 @@ in { } // defaultConfig; placeholder = { locations."/" = { - alias = pkgs.writeText "placeholder.html" "

empty space

this site is not operational

"; + alias = pkgs.writeText "placeholder.html" "empty space -- this site is non-functional"; extraConfig = '' - default_type text/html; + default_type text/plain; ''; }; } // defaultConfig;