Upgrade stable to 23.05
This commit is contained in:
@@ -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}/";
|
||||
};
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
package = pkgs.nextcloud25;
|
||||
appstoreEnable = true;
|
||||
hostName = "next.${config.networking.domain}";
|
||||
#enableBrokenCiphersForSSE = false;
|
||||
https = true;
|
||||
config = {
|
||||
adminpassFile = config.age.secrets.nextcloudadmin.path;
|
||||
|
||||
@@ -53,10 +53,8 @@ root root postgres
|
||||
postgresLog = {
|
||||
enable = true;
|
||||
files = "/var/lib/postgresql/*/log/*.log";
|
||||
extraConfig = (lib.strings.concatStringsSep "\n" [
|
||||
"compress"
|
||||
"compresscmd=${pkgs.xz}/bin/xz"
|
||||
]);
|
||||
compress = true;
|
||||
compresscmd = "${pkgs.xz}/bin/xz";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user