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:
parent
9a24294b8a
commit
64ef09c475
3 changed files with 16 additions and 6 deletions
|
@ -32,6 +32,7 @@ in lib.fix(self: {
|
||||||
"${depot.depotPath}/ops/nixos/www/todo.tvl.fyi.nix"
|
"${depot.depotPath}/ops/nixos/www/todo.tvl.fyi.nix"
|
||||||
"${depot.depotPath}/ops/nixos/www/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/b.tvl.fyi.nix"
|
||||||
|
"${depot.depotPath}/ops/nixos/www/wigglydonke.rs.nix"
|
||||||
"${depot.third_party.nixpkgsSrc}/nixos/modules/services/web-apps/gerrit.nix"
|
"${depot.third_party.nixpkgsSrc}/nixos/modules/services/web-apps/gerrit.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
15
ops/nixos/www/wigglydonke.rs.nix
Normal file
15
ops/nixos/www/wigglydonke.rs.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -111,12 +111,6 @@ with lib;
|
||||||
proxyPass = "http://localhost:${toString config.services.grafana.port}";
|
proxyPass = "http://localhost:${toString config.services.grafana.port}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
"wigglydonke.rs" = {
|
|
||||||
enableACME = true;
|
|
||||||
forceSSL = true;
|
|
||||||
root = ../../../wigglydonke.rs;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue