From b936843bb0464d95d0afbfbf7b9656d80a7464a7 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 17 Feb 2022 18:34:00 +0300 Subject: feat(ops/modules): Redirect machine base names to their config With this change, entering just "whitby.tvl.fyi" or "sanduny.tvl.su" in a browser will redirect users to their machine configurations. Change-Id: Ibf076a469bcce073e1b1970aa568d6fe16a5c75a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5304 Tested-by: BuildkiteCI Reviewed-by: sterni Autosubmit: tazjin --- ops/machines/sanduny/default.nix | 1 + ops/machines/whitby/default.nix | 1 + ops/modules/www/sanduny.tvl.su.nix | 16 ++++++++++++++++ ops/modules/www/whitby.tvl.fyi.nix | 17 +++++++++++++++++ 4 files changed, 35 insertions(+) create mode 100644 ops/modules/www/sanduny.tvl.su.nix create mode 100644 ops/modules/www/whitby.tvl.fyi.nix diff --git a/ops/machines/sanduny/default.nix b/ops/machines/sanduny/default.nix index dd2885d7bb..079b3a1635 100644 --- a/ops/machines/sanduny/default.nix +++ b/ops/machines/sanduny/default.nix @@ -15,6 +15,7 @@ in { imports = [ (mod "tvl-users.nix") + (mod "www/sanduny.tvl.su.nix") ]; networking = { diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index 61f44a5ec4..64238532c8 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -41,6 +41,7 @@ in "${depot.path}/ops/modules/www/todo.tvl.fyi.nix" "${depot.path}/ops/modules/www/tvl.fyi.nix" "${depot.path}/ops/modules/www/tvl.su.nix" + "${depot.path}/ops/modules/www/whitby.tvl.fyi.nix" "${depot.path}/ops/modules/www/wigglydonke.rs.nix" "${depot.third_party.agenix.src}/modules/age.nix" "${pkgs.path}/nixos/modules/services/web-apps/gerrit.nix" diff --git a/ops/modules/www/sanduny.tvl.su.nix b/ops/modules/www/sanduny.tvl.su.nix new file mode 100644 index 0000000000..1a60d06fa0 --- /dev/null +++ b/ops/modules/www/sanduny.tvl.su.nix @@ -0,0 +1,16 @@ +# Redirect sanduny.tvl.su to the machine configuration. + +{ + imports = [ + ./base.nix + ]; + + config.services.nginx.virtualHosts."sanduny.tvl.su" = { + serverName = "sanduny.tvl.su"; + enableACME = true; + + extraConfig = '' + return 302 https://at.tvl.fyi/?q=%2F%2Fops%2Fmachines%2Fsanduny; + ''; + }; +} diff --git a/ops/modules/www/whitby.tvl.fyi.nix b/ops/modules/www/whitby.tvl.fyi.nix new file mode 100644 index 0000000000..bcd7a76ec4 --- /dev/null +++ b/ops/modules/www/whitby.tvl.fyi.nix @@ -0,0 +1,17 @@ +# Redirect whitby.tvl.fyi to the machine configuration. + +{ + imports = [ + ./base.nix + ]; + + config.services.nginx.virtualHosts."whitby.tvl.fyi" = { + serverName = "whitby.tvl.fyi"; + serverAliases = [ "whitby.tvl.su" ]; + enableACME = true; + + extraConfig = '' + return 302 https://at.tvl.fyi/?q=%2F%2Fops%2Fmachines%2Fwhitby; + ''; + }; +} -- cgit 1.4.1