diff options
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/socrates/configuration.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/nixos/socrates/configuration.nix b/nixos/socrates/configuration.nix index e3baf3fbdc93..ebe79e096c63 100644 --- a/nixos/socrates/configuration.nix +++ b/nixos/socrates/configuration.nix @@ -154,6 +154,11 @@ in { ''; virtualHosts = { + "wpcarro.dev" = { + addSSL = true; + enableACME = true; + root = briefcase.website; + }; "learn.wpcarro.dev" = { addSSL = true; enableACME = true; @@ -167,9 +172,7 @@ in { "sandbox.wpcarro.dev" = { addSSL = true; enableACME = true; - locations."/covid-19/" = { - alias = "${briefcase.covid-uk}/"; - }; + root = briefcase.sandbox; }; }; }; |