From aec7c5c7d872ece1345584b2e6dadfe637083e2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Mon, 11 Mar 2024 04:50:59 +0100 Subject: [PATCH] vm: Change domain --- configuration/hardware-specific/vm.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration/hardware-specific/vm.nix b/configuration/hardware-specific/vm.nix index f17e7ee..b2e8826 100644 --- a/configuration/hardware-specific/vm.nix +++ b/configuration/hardware-specific/vm.nix @@ -5,9 +5,9 @@ boot.kernelParams = ["nomodeset"]; networking.hostName = "testvm"; - # Sets the base domain for nginx to localhost so that we - # can easily test locally with the VM. - services.nginx.domain = "localhost"; + # Sets the base domain for nginx to a local domain so that we can + # easily test locally with the VM. + services.nginx.domain = "dev.local"; # Use the staging secrets sops.defaultSopsFile = lib.mkOverride 99 ../../keys/staging.yaml;