increase mirroring timeouts for gitea to allow for mirroring nixpkgs

This commit is contained in:
Cyryl Płotnicki 2024-01-02 19:14:09 +00:00
parent 343e7979fa
commit 0b0150fa75

View file

@ -111,6 +111,14 @@ in {
oauth2.ENABLE = false;
log.LEVEL = "Info";
actions.ENABLED = true;
"git.timeout" = {
DEFAULT = 600;
MIGRATE = 3600;
MIRROR = 3600;
CLONE = 600;
PULL = 600;
GC = 600;
};
server = {
ROOT_URL = baseurl;
DOMAIN = domain;