Add more settings now that it's working

This commit is contained in:
niten 2023-09-06 12:15:04 -07:00
parent 44422fda4f
commit 6132dc4584
1 changed files with 10 additions and 0 deletions

View File

@ -94,14 +94,24 @@ in {
hostName = cfg.hostname;
home = "/var/lib/nextcloud/home";
datadir = "/var/lib/nextcloud/data";
webfinger = true;
configureRedis = true;
extraAppsEnable = true;
extraApps = cfg.extra-apps;
autoUpdateApps.enable = true;
appstoreEnable = false;
enableBrokenCiphersForSSE = false;
enableImageMagick = true;
database.createLocally = true;
nginx.recommendedHttpHeaders = true;
maxUploadSize = "4G";
https = true;
config = {
dbtype = "pgsql";
adminpassFile = "/etc/nextcloud/admin.passwd";
overwriteProtocol = "https";
extraTrustedDomains = [ "nextcloud.fudo.org" ];
defaultPhoneRegion = "CA";
};
};
};