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

@ -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";
};
};
}