From 39b95eaf7dcc1ba30d34f868482b798e715031f8 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Tue, 29 Nov 2022 01:06:46 -0500 Subject: [PATCH] change gitea domain --- machines/fusion/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/machines/fusion/configuration.nix b/machines/fusion/configuration.nix index a635d23..bc75ce9 100644 --- a/machines/fusion/configuration.nix +++ b/machines/fusion/configuration.nix @@ -57,8 +57,8 @@ # Setup gitea services.gitea = { enable = true; - domain = "gitea.stranger.systems"; - rootUrl = "https://gitea.stranger.systems"; + domain = "git.stranger.systems"; + rootUrl = "https://git.stranger.systems"; appName = "Stranger Systems Git Mirror"; settings = { service = { DISABLE_REGISTRATION = true; }; @@ -69,7 +69,7 @@ }; }; }; - services.nginx.virtualHosts."gitea.stranger.systems" = { + services.nginx.virtualHosts."git.stranger.systems" = { enableACME = true; forceSSL = true; locations."/" = { proxyPass = "http://localhost:3000"; };