From 9e23d00da5e2a3cfa7b1498e8a1bbd0caba4572f Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 13 Aug 2025 08:46:21 +0000 Subject: [PATCH] fix(nix): add nginx configuration for priime.dev --- nix/hosts/chaewon/sys.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/hosts/chaewon/sys.nix b/nix/hosts/chaewon/sys.nix index 71c9179..dd11238 100644 --- a/nix/hosts/chaewon/sys.nix +++ b/nix/hosts/chaewon/sys.nix @@ -92,6 +92,11 @@ services.nginx = { enable = true; virtualHosts = { + "priime.dev" = { + forceSSL = true; + enableACME = true; + locations."/".root = "/home/priime/site/build"; + }; "files.priime.dev" = { forceSSL = true; enableACME = true;