63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ cluster, config, lib, pkgs, depot, ... }:
|
|
let
|
|
patroni = cluster.config.links.patroni-pg-access;
|
|
in
|
|
{
|
|
age.secrets = {
|
|
nextcloud-adminpass = {
|
|
file = ../../../secrets/nextcloud-adminpass.age;
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
mode = "0400";
|
|
};
|
|
nextcloud-dbpass = {
|
|
file = ../../../secrets/nextcloud-dbpass.age;
|
|
owner = "nextcloud";
|
|
group = "nextcloud";
|
|
mode = "0400";
|
|
};
|
|
};
|
|
services.nextcloud = {
|
|
package = pkgs.nextcloud29;
|
|
enable = true;
|
|
https = true;
|
|
hostName = "storage.${depot.lib.meta.domain}";
|
|
home = "/srv/storage/www-app/nextcloud";
|
|
maxUploadSize = "4G";
|
|
enableImagemagick = true;
|
|
caching = with lib; flip genAttrs (_: true) [
|
|
"apcu" "redis"
|
|
];
|
|
|
|
autoUpdateApps = {
|
|
enable = true;
|
|
startAt = "02:00";
|
|
};
|
|
|
|
config = {
|
|
dbhost = patroni.tuple;
|
|
dbtype = "pgsql";
|
|
dbname = "storage";
|
|
dbuser = "storage";
|
|
dbpassFile = config.age.secrets.nextcloud-dbpass.path;
|
|
|
|
adminuser = "sa";
|
|
adminpassFile = config.age.secrets.nextcloud-adminpass.path;
|
|
};
|
|
|
|
settings = {
|
|
overwriteprotocol = "https";
|
|
};
|
|
};
|
|
services.nginx.virtualHosts."${config.services.nextcloud.hostName}" = {
|
|
addSSL = true;
|
|
enableACME = true;
|
|
};
|
|
systemd.services = {
|
|
phpfpm-nextcloud.aliases = [ "nextcloud.service" ];
|
|
nextcloud-setup.serviceConfig = {
|
|
Restart = "on-failure";
|
|
RestartSec = "10s";
|
|
};
|
|
};
|
|
}
|