disable registration on gitea
Some checks failed
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (push) Has been cancelled
Check flake.lock / Check health of `flake.lock` (push) Has been cancelled
Check Nix formatting / Perform Nix format checks (push) Has been cancelled

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-10-21 00:27:46 -04:00
parent 81df9aed70
commit f34b409f30
No known key found for this signature in database
GPG Key ID: 47940175096C1330

View File

@ -19,10 +19,15 @@ in
name = "giteadb";
port = 5433;
};
settings.server = {
DOMAIN = "git.alicehuston.xyz";
ROOT_URL = "https://git.alicehuston.xyz/";
HTTP_PORT = 6443;
settings = {
server = {
DOMAIN = "git.alicehuston.xyz";
ROOT_URL = "https://git.alicehuston.xyz/";
HTTP_PORT = 6443;
};
service = {
DISABLE_REGISTRATION = true;
};
};
stateDir = base_path;
lfs.enable = true;