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