feat(whitby): Move wigglydonke.rs to whitby

Mugwump is too unstable for such an important internet service

Change-Id: Ic714200ce5ce51f366777f538b4a6f443f010960
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2124
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Griffin Smith 2020-11-22 12:28:17 -05:00 committed by glittershark
parent 9a24294b8a
commit 64ef09c475
3 changed files with 16 additions and 6 deletions

View file

@ -32,6 +32,7 @@ in lib.fix(self: {
"${depot.depotPath}/ops/nixos/www/todo.tvl.fyi.nix"
"${depot.depotPath}/ops/nixos/www/tvl.fyi.nix"
"${depot.depotPath}/ops/nixos/www/b.tvl.fyi.nix"
"${depot.depotPath}/ops/nixos/www/wigglydonke.rs.nix"
"${depot.third_party.nixpkgsSrc}/nixos/modules/services/web-apps/gerrit.nix"
];

View file

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
{
imports = [
./base.nix
];
config = {
services.nginx.virtualHosts."wigglydonke.rs" = {
enableACME = true;
forceSSL = true;
root = "${config.depot.depotPath}/users/glittershark/wigglydonke.rs";
};
};
}

View file

@ -111,12 +111,6 @@ with lib;
proxyPass = "http://localhost:${toString config.services.grafana.port}";
};
};
"wigglydonke.rs" = {
enableACME = true;
forceSSL = true;
root = ../../../wigglydonke.rs;
};
};
};