From c43ef3fe59a4f8f960f09b17f9d6c58ce56a98f0 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 13 Feb 2023 21:57:17 +0100 Subject: [PATCH] nitter: Allow favicons --- system/nixos/nitter.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/system/nixos/nitter.nix b/system/nixos/nitter.nix index 4cec6c1..0aece12 100644 --- a/system/nixos/nitter.nix +++ b/system/nixos/nitter.nix @@ -53,6 +53,21 @@ proxyPass = "http://127.0.0.1:8001"; }; + locations."/favicon.ico" = { + recommendedProxySettings = true; + proxyPass = "http://127.0.0.1:8001"; + }; + + locations."/favicon-32x32.png" = { + recommendedProxySettings = true; + proxyPass = "http://127.0.0.1:8001"; + }; + + locations."/favicon-16x16.png" = { + recommendedProxySettings = true; + proxyPass = "http://127.0.0.1:8001"; + }; + locations."/apple-touch-icon.png" = { recommendedProxySettings = true; proxyPass = "http://127.0.0.1:8001";