feat(server): enable ssh signature for forgejo repositories

This commit is contained in:
Mohammad Rafiq 2025-06-14 23:10:28 +08:00
parent 7f06f204a8
commit 29c652e615
No known key found for this signature in database

View file

@ -24,11 +24,14 @@ in
}); });
services.forgejo = { services.forgejo = {
enable = true; enable = true;
settings.server = { settings = {
server = {
DOMAIN = cfg.url; DOMAIN = cfg.url;
ROOT_URL = "https://${cfg.url}/"; ROOT_URL = "https://${cfg.url}/";
HTTP_PORT = cfg.port; HTTP_PORT = cfg.port;
}; };
"repository.signing".FORMAT = "ssh";
};
}; };
}; };
} }