From bd7469a7d11a24a6305a01851c17a48517f399ef Mon Sep 17 00:00:00 2001 From: James Eversole Date: Wed, 28 Feb 2024 14:48:57 -0600 Subject: [PATCH] Wired.com is absolute garbage --- nix/application/nginx.nix | 4 +--- nix/system/dns.nix | 7 ++++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/nix/application/nginx.nix b/nix/application/nginx.nix index 33890cb..da30c03 100644 --- a/nix/application/nginx.nix +++ b/nix/application/nginx.nix @@ -58,9 +58,7 @@ ''; }; "eversole.co" = proxied { target = "http://127.0.0.1:5196"; }; - "flux.matri.cx" = proxied { - target = "http://127.0.0.1:26343"; - }; + "flux.matri.cx" = proxied { target = "http://127.0.0.1:26343"; }; "git.eversole.co" = { enableACME = true; forceSSL = true; diff --git a/nix/system/dns.nix b/nix/system/dns.nix index 271b560..b113d37 100644 --- a/nix/system/dns.nix +++ b/nix/system/dns.nix @@ -53,12 +53,17 @@ } # Stop unblocking these sites. Seriously. - # No. :) lobste.rs { template IN A { answer "{{ .Name }} 0 IN A 127.0.0.1" } } + + wired.com { + template IN A { + answer "{{ .Name }} 0 IN A 127.0.0.1" + } + } ''; }; }