From 053643c66f8db7bc3360b08371ef6f078ddca0ce Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 5 Oct 2023 20:32:16 +0300 Subject: chore(ops): remove images.tvl.fyi I don't even know what this is/was. Change-Id: I743efa88258bbc13b7a3d4b8de8df222325b00ed Reviewed-on: https://cl.tvl.fyi/c/depot/+/9553 Tested-by: BuildkiteCI Autosubmit: tazjin Reviewed-by: flokli Reviewed-by: tazjin --- ops/modules/www/images.tvl.fyi.nix | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 ops/modules/www/images.tvl.fyi.nix (limited to 'ops/modules/www/images.tvl.fyi.nix') diff --git a/ops/modules/www/images.tvl.fyi.nix b/ops/modules/www/images.tvl.fyi.nix deleted file mode 100644 index 7d027b2991..0000000000 --- a/ops/modules/www/images.tvl.fyi.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ config, ... }: - -{ - imports = [ - ./base.nix - ]; - - config = { - services.nginx.virtualHosts."images.tvl.fyi" = { - serverName = "images.tvl.fyi"; - serverAliases = [ "images.tvl.su" ]; - enableACME = true; - forceSSL = true; - - extraConfig = '' - location / { - proxy_pass http://localhost:${toString config.services.depot.nixery.port}; - } - ''; - }; - }; -} -- cgit 1.4.1