From d695930229a1f050f44b21977513e78467336521 Mon Sep 17 00:00:00 2001 From: Sky Hearn Date: Thu, 7 Mar 2024 19:14:37 -0800 Subject: [PATCH] Change some domain names around and name my gitea server. --- services/gitea.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/gitea.nix b/services/gitea.nix index c5339dd..0653a15 100755 --- a/services/gitea.nix +++ b/services/gitea.nix @@ -25,14 +25,14 @@ services.gitea = { enable = true; - appName = "My awesome Gitea server"; # Give the site a name + appName = "Fallingsky04's Gitea Server <3"; # Give the site a name database = { type = "postgres"; passwordFile = "/run/keys/gitea-dbpassword"; # config.sops.secrets."postgres/gitea_dbpass".path }; settings.server = { - DOMAIN = "git.my-domain.tld"; - ROOT_URL = "https://git.my-domain.tld/"; + DOMAIN = "git.fallingsky.love"; + ROOT_URL = "https://git.fallingsky.love/"; HTTP_PORT = 3001; }; };