92 lines
2.3 KiB
Nix
92 lines
2.3 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
services.nextcloud = {
|
|
appstoreEnable = true;
|
|
caching.redis = true;
|
|
config = {
|
|
adminpassFile = config.sops.secrets."services/nextcloud/adminpass".path;
|
|
adminuser = "darkkirb";
|
|
dbhost = "/run/postgresql";
|
|
dbname = "nextcloud";
|
|
dbtype = "pgsql";
|
|
dbuser = "nextcloud";
|
|
defaultPhoneRegion = "DE";
|
|
objectstore.s3 = {
|
|
autocreate = false;
|
|
bucket = "nextcloud-chir-rs";
|
|
enable = true;
|
|
hostname = "ams1.vultrobjects.com";
|
|
key = "X86D3HKJ3Y92IASK0XIG";
|
|
secretFile = config.sops.secrets."services/nextcloud/s3".path;
|
|
usePathStyle = true;
|
|
useSsl = true;
|
|
};
|
|
overwriteProtocol = "https";
|
|
};
|
|
enable = true;
|
|
enableImagemagick = true;
|
|
extraAppsEnable = true;
|
|
extraOptions = {
|
|
redis = {
|
|
host = config.services.redis.servers.nextcloud.unixSocket;
|
|
port = 0;
|
|
dbindex = 0;
|
|
};
|
|
};
|
|
hostName = "cloud.chir.rs";
|
|
https = true;
|
|
package = pkgs.nextcloud27;
|
|
phpOptions = {
|
|
"opcache.save_comments" = "1";
|
|
"opcache.validate_timestamps" = "0";
|
|
"opcache.jit" = "1255";
|
|
"opcache.jit_buffer_size" = "128M";
|
|
};
|
|
poolSettings = {
|
|
pm = "dynamic";
|
|
"pm.max_children" = 460;
|
|
"pm.start_servers" = 4;
|
|
"pm.min_spare_servers" = 4;
|
|
"pm.max_spare_servers" = 64;
|
|
};
|
|
webfinger = true;
|
|
};
|
|
sops.secrets."services/nextcloud/adminpass".owner = "nextcloud";
|
|
sops.secrets."services/nextcloud/s3".owner = "nextcloud";
|
|
services.redis.servers.nextcloud = {
|
|
enable = true;
|
|
user = "nextcloud";
|
|
};
|
|
services.postgresql.ensureDatabases = ["nextcloud"];
|
|
services.postgresql.ensureUsers = [
|
|
{
|
|
name = "nextcloud";
|
|
ensurePermissions = {
|
|
"DATABASE nextcloud" = "ALL PRIVILEGES";
|
|
};
|
|
}
|
|
];
|
|
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
|
|
listen = [
|
|
{
|
|
addr = "127.0.0.1";
|
|
port = 13286;
|
|
}
|
|
];
|
|
};
|
|
|
|
services.caddy.virtualHosts."cloud.chir.rs" = {
|
|
useACMEHost = "chir.rs";
|
|
logFormat = pkgs.lib.mkForce "";
|
|
extraConfig = ''
|
|
import baseConfig
|
|
reverse_proxy {
|
|
to http://127.0.0.1:13286
|
|
header_up Host cloud.chir.rs
|
|
}
|
|
'';
|
|
};
|
|
}
|