2023-10-29 13:12:10 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
flake,
|
|
|
|
...
|
2023-11-05 22:47:06 +00:00
|
|
|
}:
|
|
|
|
{
|
2023-10-28 16:53:02 +00:00
|
|
|
age.secrets."nextcloud-secrets" = {
|
|
|
|
file = "${flake.self}/secrets/nextcloud-secrets.age";
|
|
|
|
mode = "400";
|
2023-10-29 13:12:10 +00:00
|
|
|
owner = "nextcloud";
|
|
|
|
};
|
|
|
|
|
|
|
|
age.secrets."nextcloud-admin-pass" = {
|
|
|
|
file = "${flake.self}/secrets/nextcloud-admin-pass.age";
|
|
|
|
mode = "400";
|
|
|
|
owner = "nextcloud";
|
2023-10-28 16:53:02 +00:00
|
|
|
};
|
|
|
|
|
2023-10-28 19:34:47 +00:00
|
|
|
services.nginx.virtualHosts."cloud.pub.solar" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
};
|
|
|
|
|
2023-10-28 14:53:40 +00:00
|
|
|
services.nextcloud = {
|
|
|
|
hostName = "cloud.pub.solar";
|
|
|
|
home = "/var/lib/nextcloud";
|
|
|
|
|
|
|
|
enable = true;
|
2023-10-29 18:05:02 +00:00
|
|
|
package = pkgs.nextcloud27;
|
2023-10-28 14:53:40 +00:00
|
|
|
https = true;
|
2023-10-28 16:53:02 +00:00
|
|
|
secretFile = config.age.secrets."nextcloud-secrets".path; # secret
|
2023-10-29 13:12:10 +00:00
|
|
|
maxUploadSize = "1G";
|
2023-12-01 18:14:28 +00:00
|
|
|
skeletonDirectory = "./nextcloud-skeleton";
|
2023-10-28 14:53:40 +00:00
|
|
|
|
|
|
|
configureRedis = true;
|
|
|
|
|
|
|
|
notify_push = {
|
|
|
|
enable = true;
|
2023-11-18 16:38:58 +00:00
|
|
|
bendDomainToLocalhost = true;
|
2023-10-28 14:53:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
adminuser = "admin";
|
2023-10-29 13:12:10 +00:00
|
|
|
adminpassFile = config.age.secrets."nextcloud-admin-pass".path;
|
2023-10-28 14:53:40 +00:00
|
|
|
dbuser = "nextcloud";
|
|
|
|
dbtype = "pgsql";
|
|
|
|
dbname = "nextcloud";
|
|
|
|
dbtableprefix = "oc_";
|
|
|
|
overwriteProtocol = "https";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraOptions = {
|
|
|
|
overwrite.cli.url = "http://cloud.pub.solar";
|
|
|
|
|
|
|
|
installed = true;
|
|
|
|
default_phone_region = "+49";
|
|
|
|
mail_sendmailmode = "smtp";
|
|
|
|
mail_from_address = "nextcloud";
|
|
|
|
mail_smtpmode = "smtp";
|
|
|
|
mail_smtpauthtype = "PLAIN";
|
|
|
|
mail_domain = "pub.solar";
|
|
|
|
mail_smtpname = "admins@pub.solar";
|
|
|
|
mail_smtpsecure = "tls";
|
|
|
|
mail_smtpauth = 1;
|
|
|
|
mail_smtphost = "mx2.greenbaum.cloud";
|
|
|
|
mail_smtpport = "587";
|
|
|
|
|
2023-10-29 18:17:53 +00:00
|
|
|
# This is to allow connections to collabora and keycloak, among other services
|
|
|
|
# running on the same host
|
2023-10-31 20:24:27 +00:00
|
|
|
#
|
2023-10-29 18:17:53 +00:00
|
|
|
# https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/config_sample_php_parameters.html?highlight=allow_local_remote_servers%20true
|
|
|
|
# https://github.com/ONLYOFFICE/onlyoffice-nextcloud/issues/293
|
|
|
|
allow_local_remote_servers = true;
|
|
|
|
|
2023-10-28 14:53:40 +00:00
|
|
|
enable_previews = true;
|
|
|
|
enabledPreviewProviders = [
|
|
|
|
"OC\\Preview\\PNG"
|
|
|
|
"OC\\Preview\\JPEG"
|
|
|
|
"OC\\Preview\\GIF"
|
|
|
|
"OC\\Preview\\BMP"
|
|
|
|
"OC\\Preview\\XBitmap"
|
|
|
|
"OC\\Preview\\Movie"
|
|
|
|
"OC\\Preview\\PDF"
|
|
|
|
"OC\\Preview\\MP3"
|
|
|
|
"OC\\Preview\\TXT"
|
|
|
|
"OC\\Preview\\MarkDown"
|
|
|
|
];
|
|
|
|
preview_max_x = "1024";
|
|
|
|
preview_max_y = "768";
|
|
|
|
preview_max_scale_factor = "1";
|
|
|
|
|
|
|
|
auth.bruteforce.protection.enabled = true;
|
|
|
|
trashbin_retention_obligation = "auto,7";
|
|
|
|
skeletondirectory = "";
|
|
|
|
defaultapp = "file";
|
|
|
|
activity_expire_days = "14";
|
|
|
|
integrity.check.disabled = false;
|
|
|
|
updater.release.channel = "stable";
|
|
|
|
loglevel = 0;
|
2023-10-29 12:52:11 +00:00
|
|
|
# maintenance = false;
|
2023-10-28 14:53:40 +00:00
|
|
|
app_install_overwrite = [
|
|
|
|
"pdfdraw"
|
|
|
|
"integration_whiteboard"
|
|
|
|
];
|
|
|
|
htaccess.RewriteBase = "/";
|
|
|
|
theme = "";
|
|
|
|
simpleSignUpLink.shown = false;
|
|
|
|
};
|
|
|
|
|
2023-10-31 20:24:27 +00:00
|
|
|
# Calculated with 4GiB RAM, 80MiB process size available on
|
|
|
|
# https://spot13.com/pmcalculator/
|
|
|
|
poolSettings = {
|
|
|
|
pm = "dynamic";
|
|
|
|
"pm.max_children" = "52";
|
|
|
|
"pm.max_requests" = "500";
|
|
|
|
"pm.max_spare_servers" = "39";
|
|
|
|
"pm.min_spare_servers" = "13";
|
|
|
|
"pm.start_servers" = "13";
|
|
|
|
};
|
|
|
|
|
2023-10-28 14:53:40 +00:00
|
|
|
caching.redis = true;
|
|
|
|
autoUpdateApps.enable = true;
|
|
|
|
database.createLocally = true;
|
|
|
|
};
|
2023-11-05 21:54:09 +00:00
|
|
|
|
2023-11-18 21:28:12 +00:00
|
|
|
services.restic.backups.nextcloud-droppie = {
|
2023-11-05 21:54:09 +00:00
|
|
|
paths = [
|
|
|
|
"/var/lib/nextcloud/data"
|
|
|
|
"/tmp/nextcloud-backup.sql"
|
|
|
|
];
|
2023-11-05 22:47:06 +00:00
|
|
|
timerConfig = {
|
|
|
|
OnCalendar = "*-*-* 02:00:00 Etc/UTC";
|
|
|
|
# droppie will be offline if nachtigall misses the timer
|
|
|
|
Persistent = false;
|
|
|
|
};
|
|
|
|
initialize = true;
|
|
|
|
passwordFile = config.age.secrets."restic-repo-droppie".path;
|
2023-11-06 21:58:48 +00:00
|
|
|
repository = "sftp:yule@droppie.b12f.io:/media/internal/pub.solar";
|
2023-11-05 21:54:09 +00:00
|
|
|
backupPrepareCommand = ''
|
2023-11-06 21:22:36 +00:00
|
|
|
${pkgs.sudo}/bin/sudo -u postgres ${pkgs.postgresql}/bin/pg_dump -d nextcloud > /tmp/nextcloud-backup.sql
|
2023-11-05 21:54:09 +00:00
|
|
|
'';
|
|
|
|
backupCleanupCommand = ''
|
|
|
|
rm /tmp/nextcloud-backup.sql
|
|
|
|
'';
|
|
|
|
};
|
2023-11-18 21:28:12 +00:00
|
|
|
|
|
|
|
services.restic.backups.nextcloud-storagebox = {
|
|
|
|
paths = [
|
|
|
|
"/var/lib/nextcloud/data"
|
|
|
|
"/tmp/nextcloud-backup.sql"
|
|
|
|
];
|
|
|
|
timerConfig = {
|
|
|
|
OnCalendar = "*-*-* 04:00:00 Etc/UTC";
|
|
|
|
};
|
|
|
|
initialize = true;
|
|
|
|
passwordFile = config.age.secrets."restic-repo-storagebox".path;
|
|
|
|
repository = "sftp:u377325@u377325.your-storagebox.de:/backups";
|
|
|
|
backupPrepareCommand = ''
|
|
|
|
${pkgs.sudo}/bin/sudo -u postgres ${pkgs.postgresql}/bin/pg_dump -d nextcloud > /tmp/nextcloud-backup.sql
|
|
|
|
'';
|
|
|
|
backupCleanupCommand = ''
|
|
|
|
rm /tmp/nextcloud-backup.sql
|
|
|
|
'';
|
|
|
|
};
|
2023-10-28 14:53:40 +00:00
|
|
|
}
|