Add memcached and smaller setting adjustments

This commit is contained in:
thiloho
2023-08-05 23:47:31 +02:00
parent 3e7d421798
commit 204ae78ba3

View File

@@ -54,16 +54,27 @@
}; };
}; };
}; };
memcached.enable = true;
nextcloud = { nextcloud = {
enable = true; enable = true;
package = pkgs.nextcloud27; package = pkgs.nextcloud27;
hostName = "cloud.thilohohlt.com"; hostName = "cloud.thilohohlt.com";
database.createLocally = true; database.createLocally = true;
https = true;
caching.memcached = true;
config = { config = {
dbtype = "pgsql"; dbtype = "pgsql";
adminpassFile = "/var/run/nextcloud-pass.txt"; adminpassFile = "/var/run/nextcloud-pass.txt";
defaultPhoneRegion = "DE";
};
phpOptions = {
upload_max_filesize = "16G";
post_max_size = "16G";
};
extraOptions = {
mail_smtpmode = "sendmail";
mail_sendmailmode = "pipe";
}; };
https = true;
}; };
}; };