Upgrade stable to 23.05

This commit is contained in:
Greg Hellings
2023-05-29 02:42:37 +00:00
parent 64e0ed0b6f
commit 18c165663d
7 changed files with 13 additions and 17 deletions
+3 -6
View File
@@ -23,22 +23,19 @@ in {
services.gitea = rec {
enable = true;
appName = "Greg's Sources";
cookieSecure = true;
database = {
type = "postgres";
user = "gitea";
};
disableRegistration = true;
domain = srcDomain;
dump = {
enable = true;
type = "tar.xz";
};
settings = {
server.HTTP_PORT = 3001;
};
log = {
level = "Info";
service.DISABLE_REGISTRATION = pkgs.lib.mkForce true;
session.COOKIE_SECURE = pkgs.lib.mkForce true;
log.level = "Info";
};
rootUrl = "https://${domain}/";
};