gitea: fix infinite recursion

This commit is contained in:
Sandro - 2023-04-28 00:07:24 +02:00
parent e6f98212e2
commit 1d62fc65ae
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 3 additions and 9 deletions

View File

@ -20,10 +20,8 @@
enable = true;
appName = "Gitea: with a cup of Kolle Mate";
database.type = "postgres";
domain = "gitea.c3d2.de";
lfs.enable = true;
repositoryRoot = "/var/lib/gitea/repositories";
rootUrl = "https://${config.services.gitea.domain}/";
dump = {
# Is a nice feature once we have a dedicated backup storage.
@ -41,11 +39,6 @@
settings = {
# we use drone for internal tasks and don't want people to execute code on our infrastructure
actions.ENABLED = false;
cors = {
ALLOW_DOMAIN = config.services.gitea.domain;
ENABLED = true;
SCHEME = "https";
};
"cron.delete_generated_repository_avatars".ENABLED = true;
"cron.delete_old_system_notices".ENABLED = true;
"cron.git_gc_repos".ENABLED = true;
@ -80,10 +73,11 @@
REPOSITORY_AVATAR_FALLBACK = "random";
};
repository.DEFAULT_REPO_UNITS = "repo.code,repo.releases,repo.issues,repo.pulls";
server = {
server = rec {
DOMAIN = "gitea.c3d2.de";
ENABLE_GZIP = true;
SSH_AUTHORIZED_KEYS_BACKUP = false;
SSH_DOMAIN = config.services.gitea.domain;
SSH_DOMAIN = DOMAIN;
};
service = {
DISABLE_REGISTRATION = true;