Tom Hubrecht
2f06f22ac7
All checks were successful
Check meta / check_meta (pull_request) Successful in 18s
Check meta / check_dns (pull_request) Successful in 16s
build configuration / build_and_cache_storage01 (pull_request) Successful in 1m22s
build configuration / build_and_cache_rescue01 (pull_request) Successful in 1m20s
build configuration / build_and_cache_compute01 (pull_request) Successful in 1m40s
build configuration / build_and_cache_geo01 (pull_request) Successful in 1m4s
build configuration / build_and_cache_krz01 (pull_request) Successful in 2m2s
lint / check (pull_request) Successful in 25s
build configuration / build_and_cache_geo02 (pull_request) Successful in 1m4s
build configuration / build_and_cache_web02 (pull_request) Successful in 1m16s
build configuration / build_and_cache_bridge01 (pull_request) Successful in 1m9s
build configuration / build_and_cache_vault01 (pull_request) Successful in 1m23s
build configuration / build_and_cache_web01 (pull_request) Successful in 1m54s
build configuration / build_and_cache_storage01 (push) Successful in 1m14s
build configuration / build_and_cache_compute01 (push) Successful in 1m33s
build configuration / build_and_cache_krz01 (push) Successful in 2m1s
build configuration / build_and_cache_rescue01 (push) Successful in 1m15s
build configuration / build_and_cache_geo01 (push) Successful in 1m0s
build configuration / build_and_cache_geo02 (push) Successful in 1m4s
build configuration / build_and_cache_vault01 (push) Successful in 1m21s
lint / check (push) Successful in 24s
build configuration / build_and_cache_web02 (push) Successful in 1m7s
build configuration / build_and_cache_bridge01 (push) Successful in 1m5s
build configuration / build_and_cache_web01 (push) Successful in 1m41s
217 lines
5.6 KiB
Nix
217 lines
5.6 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
host = "cloud.dgnum.eu";
|
|
nextcloud-occ = "${config.services.nextcloud.occ}/bin/nextcloud-occ";
|
|
|
|
port = 9980;
|
|
in
|
|
{
|
|
services.nextcloud = {
|
|
enable = true;
|
|
hostName = host;
|
|
|
|
package = pkgs.nextcloud29;
|
|
|
|
https = true;
|
|
|
|
config = {
|
|
dbtype = "pgsql";
|
|
|
|
adminpassFile = config.age.secrets."nextcloud-adminpass_file".path;
|
|
adminuser = "thubrecht";
|
|
|
|
objectstore.s3 = {
|
|
enable = true;
|
|
|
|
hostname = "s3.dgnum.eu";
|
|
region = "garage";
|
|
usePathStyle = true;
|
|
port = 443;
|
|
|
|
bucket = "nextcloud-dgnum";
|
|
key = "GKda5367c73ca607c349d83c35";
|
|
verify_bucket_exists = false;
|
|
secretFile = config.age.secrets."nextcloud-s3_secret_file".path;
|
|
};
|
|
};
|
|
|
|
maxUploadSize = "4G";
|
|
|
|
poolSettings = {
|
|
pm = "dynamic";
|
|
"pm.max_children" = 64;
|
|
"pm.max_requests" = "500";
|
|
"pm.max_spare_servers" = "8";
|
|
"pm.min_spare_servers" = "4";
|
|
"pm.start_servers" = "6";
|
|
};
|
|
|
|
phpOptions = {
|
|
short_open_tag = "Off";
|
|
expose_php = "Off";
|
|
error_reporting = "E_ALL & ~E_DEPRECATED & ~E_STRICT";
|
|
display_errors = "stderr";
|
|
"opcache.enable_cli" = "1";
|
|
"opcache.interned_strings_buffer" = "32";
|
|
"opcache.max_accelerated_files" = "10000";
|
|
"opcache.memory_consumption" = "128";
|
|
"opcache.revalidate_freq" = "1";
|
|
"opcache.fast_shutdown" = "0";
|
|
"openssl.cafile" = "/etc/ssl/certs/ca-certificates.crt";
|
|
catch_workers_output = "yes";
|
|
};
|
|
|
|
database.createLocally = true;
|
|
configureRedis = true;
|
|
|
|
autoUpdateApps.enable = true;
|
|
|
|
settings = {
|
|
overwriteprotocol = "https";
|
|
|
|
overwritehost = host;
|
|
"overwrite.cli.url" = "https://${host}";
|
|
updatechecker = false;
|
|
|
|
default_phone_region = "FR";
|
|
|
|
trusted_proxies = [ "::1" ];
|
|
|
|
allow_local_remote_servers = true;
|
|
maintenance_window_start = 1;
|
|
|
|
"memories.exiftool" = "${pkgs.lib.getExe pkgs.exiftool}";
|
|
"memories.vod.ffmpeg" = "${pkgs.lib.getExe pkgs.ffmpeg-headless}";
|
|
"memories.vod.ffprobe" = "${pkgs.ffmpeg-headless}/bin/ffprobe";
|
|
};
|
|
};
|
|
|
|
virtualisation = {
|
|
podman = {
|
|
enable = true;
|
|
|
|
defaultNetwork.settings = {
|
|
dns_enable = true;
|
|
ipv6_enabled = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
virtualisation.oci-containers = {
|
|
containers.collabora = {
|
|
image = "collabora/code";
|
|
imageFile = pkgs.dockerTools.pullImage {
|
|
imageName = "collabora/code";
|
|
imageDigest = "sha256:07da8a191b37058514dfdf921ea8c2270c6634fa659acee774cf8594f86950e4";
|
|
sha256 = "sha256-5oaz07NQScHUVN/HznzZGQ2bGrU/V1GhI+9btXHz0GM=";
|
|
};
|
|
ports = [ "${builtins.toString port}:${builtins.toString port}" ];
|
|
environment = {
|
|
domain = "cloud.dgnum.eu";
|
|
extra_params = "--o:ssl.enable=false --o:ssl.termination=true --o:remote_font_config.url=https://cloud.dgnum.eu/apps/richdocuments/settings/fonts.json";
|
|
};
|
|
extraOptions = [
|
|
"--network=host"
|
|
"--cap-add"
|
|
"MKNOD"
|
|
"--cap-add"
|
|
"SYS_ADMIN"
|
|
];
|
|
};
|
|
};
|
|
|
|
dgn-web.internalPorts.collabora = port;
|
|
|
|
services.nginx.virtualHosts = {
|
|
${host} = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
|
|
extraConfig = ''
|
|
proxy_max_temp_file_size 4096m;
|
|
'';
|
|
};
|
|
|
|
"code.dgnum.eu" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
|
|
extraConfig = ''
|
|
# static files
|
|
location ^~ /browser {
|
|
proxy_pass http://127.0.0.1:${builtins.toString port};
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
# WOPI discovery URL
|
|
location ^~ /hosting/discovery {
|
|
proxy_pass http://127.0.0.1:${builtins.toString port};
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
# Capabilities
|
|
location ^~ /hosting/capabilities {
|
|
proxy_pass http://127.0.0.1:${builtins.toString port};
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
# main websocket
|
|
location ~ ^/cool/(.*)/ws$ {
|
|
proxy_pass http://127.0.0.1:${builtins.toString port};
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 36000s;
|
|
}
|
|
|
|
# download, presentation and image upload
|
|
location ~ ^/(c|l)ool {
|
|
proxy_pass http://127.0.0.1:${builtins.toString port};
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
# Admin Console websocket
|
|
location ^~ /cool/adminws {
|
|
proxy_pass http://127.0.0.1:${builtins.toString port};
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 36000s;
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
|
|
systemd.services = {
|
|
nextcloud-preview = {
|
|
description = "Generate preview for nextcloud media.";
|
|
script = "${nextcloud-occ} preview:pre-generate -vvv";
|
|
startAt = "*-*-* 01:00:00 UTC";
|
|
serviceConfig = {
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
|
|
nextcloud-cron.path = [ pkgs.perl ];
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.ffmpeg_6-headless ];
|
|
|
|
networking.hosts = {
|
|
"129.199.146.148" = [ "s3.dgnum.eu" ];
|
|
};
|
|
|
|
age-secrets.autoMatch = [ "nextcloud" ];
|
|
|
|
system.activationScripts = {
|
|
restart-nextcloud.text = ''
|
|
if [ "$(${pkgs.systemd}/bin/systemctl is-active phpfpm-nextcloud)" == "active" ]; then
|
|
${pkgs.systemd}/bin/systemctl restart phpfpm-nextcloud
|
|
fi
|
|
'';
|
|
};
|
|
|
|
dgn-backups.jobs.nextcloud.settings.paths = [ "/var/lib/nextcloud" ];
|
|
dgn-backups.postgresDatabases = [ "nextcloud" ];
|
|
}
|