2024-10-12 19:30:36 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2023-09-11 11:17:52 +02:00
|
|
|
|
|
|
|
let
|
2024-10-12 19:30:36 +02:00
|
|
|
inherit (lib) mapAttrs' nameValuePair;
|
|
|
|
|
2023-09-11 11:17:52 +02:00
|
|
|
host = "s3.dgnum.eu";
|
|
|
|
webHost = "cdn.dgnum.eu";
|
2023-09-17 18:13:35 +02:00
|
|
|
|
|
|
|
data_dir = "/data/slow/garage/data";
|
|
|
|
metadata_dir = "/data/fast/garage/meta";
|
2023-10-05 23:28:27 +02:00
|
|
|
|
2024-03-16 17:34:42 +01:00
|
|
|
domains = [
|
2024-09-22 00:52:04 +02:00
|
|
|
"bandarretdurgence.ens.fr"
|
2024-03-16 17:34:42 +01:00
|
|
|
"boussole-sante.normalesup.eu"
|
2024-09-22 00:52:04 +02:00
|
|
|
"lanuit.ens.fr"
|
2024-03-16 17:34:42 +01:00
|
|
|
"simi.normalesup.eu"
|
|
|
|
];
|
|
|
|
|
|
|
|
buckets = [
|
2024-10-10 12:34:53 +02:00
|
|
|
"monorepo-terraform-state"
|
|
|
|
|
2024-09-22 00:52:04 +02:00
|
|
|
"banda-website"
|
2024-03-16 17:34:42 +01:00
|
|
|
"castopod-dgnum"
|
2024-09-22 00:52:04 +02:00
|
|
|
"hackens-website"
|
|
|
|
"nuit-website"
|
2024-03-16 17:34:42 +01:00
|
|
|
"peertube-videos-dgnum"
|
|
|
|
] ++ domains;
|
|
|
|
|
|
|
|
mkHosted = host: builtins.map (b: "${b}.${host}");
|
2024-10-12 19:30:36 +02:00
|
|
|
|
|
|
|
ports = {
|
|
|
|
admin_api = 3903;
|
|
|
|
k2v_api = 3904;
|
|
|
|
rpc = 3901;
|
|
|
|
s3_api = 3900;
|
|
|
|
s3_web = 3902;
|
|
|
|
};
|
2024-02-02 10:51:31 +01:00
|
|
|
in
|
|
|
|
{
|
2024-10-12 19:30:36 +02:00
|
|
|
dgn-web.internalPorts = mapAttrs' (name: nameValuePair "garage-${name}") ports;
|
|
|
|
|
2023-09-11 11:17:52 +02:00
|
|
|
services.garage = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-10-06 15:29:20 +02:00
|
|
|
package = pkgs.garage_1_0_1;
|
2023-11-29 16:12:24 +01:00
|
|
|
|
2023-09-11 11:17:52 +02:00
|
|
|
settings = {
|
2023-09-17 18:13:35 +02:00
|
|
|
inherit data_dir metadata_dir;
|
|
|
|
|
2023-12-05 23:41:26 +01:00
|
|
|
db_engine = "lmdb";
|
2023-11-29 16:12:24 +01:00
|
|
|
|
2024-10-02 19:20:17 +02:00
|
|
|
replication_mode = "none"; # TODO: deprecated
|
2023-09-11 11:17:52 +02:00
|
|
|
compression_level = 7;
|
|
|
|
|
2024-10-12 19:30:36 +02:00
|
|
|
rpc_bind_addr = "[::]:${toString ports.rpc}";
|
|
|
|
rpc_public_addr = "127.0.0.1:${toString ports.rpc}";
|
2023-09-11 11:17:52 +02:00
|
|
|
|
|
|
|
s3_api = {
|
2023-09-11 18:54:17 +02:00
|
|
|
s3_region = "garage";
|
2024-10-12 19:30:36 +02:00
|
|
|
api_bind_addr = "127.0.0.1:${toString ports.s3_api}";
|
2023-09-11 11:17:52 +02:00
|
|
|
root_domain = ".${host}";
|
|
|
|
};
|
|
|
|
|
|
|
|
s3_web = {
|
2024-10-12 19:30:36 +02:00
|
|
|
bind_addr = "127.0.0.1:${toString ports.s3_web}";
|
2023-09-11 11:17:52 +02:00
|
|
|
root_domain = ".${webHost}";
|
|
|
|
index = "index.html";
|
|
|
|
};
|
|
|
|
|
2024-10-12 19:30:36 +02:00
|
|
|
k2v_api.api_bind_addr = "[::]:${toString ports.k2v_api}";
|
2023-09-11 11:17:52 +02:00
|
|
|
|
2024-10-12 19:30:36 +02:00
|
|
|
admin.api_bind_addr = "127.0.0.1:${toString ports.admin_api}";
|
2023-09-11 11:17:52 +02:00
|
|
|
};
|
2023-09-24 13:27:14 +02:00
|
|
|
|
|
|
|
environmentFile = config.age.secrets."garage-environment_file".path;
|
2023-09-11 11:17:52 +02:00
|
|
|
};
|
|
|
|
|
2023-09-17 18:13:35 +02:00
|
|
|
systemd.services.garage.serviceConfig = {
|
|
|
|
User = "garage";
|
2024-02-02 10:51:31 +01:00
|
|
|
ReadWriteDirectories = [
|
|
|
|
data_dir
|
|
|
|
metadata_dir
|
|
|
|
];
|
2024-10-02 19:20:17 +02:00
|
|
|
TimeoutSec = 600;
|
2023-09-17 18:13:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
users.users.garage = {
|
|
|
|
isSystemUser = true;
|
|
|
|
group = "garage";
|
|
|
|
};
|
|
|
|
users.groups.garage = { };
|
|
|
|
|
2023-09-11 18:54:17 +02:00
|
|
|
services.nginx.virtualHosts = {
|
2024-10-10 16:45:23 +02:00
|
|
|
"s3-admin.dgnum.eu" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
|
|
|
|
locations."/".extraConfig = ''
|
2024-10-12 19:30:36 +02:00
|
|
|
proxy_pass http://127.0.0.1:${toString ports.admin_api};
|
2024-10-10 16:45:23 +02:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-09-11 18:54:17 +02:00
|
|
|
${host} = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
2023-10-05 23:28:27 +02:00
|
|
|
|
2024-03-16 17:34:42 +01:00
|
|
|
serverAliases = mkHosted host buckets;
|
2023-10-05 23:28:27 +02:00
|
|
|
|
2023-09-11 18:54:17 +02:00
|
|
|
locations."/".extraConfig = ''
|
2024-10-12 19:30:36 +02:00
|
|
|
proxy_pass http://127.0.0.1:${toString ports.s3_api};
|
2023-09-11 18:54:17 +02:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
# Disable buffering to a temporary file.
|
|
|
|
proxy_max_temp_file_size 0;
|
2023-12-08 14:52:51 +01:00
|
|
|
client_max_body_size 5G;
|
2023-09-11 18:54:17 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
${webHost} = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
2023-10-05 23:28:27 +02:00
|
|
|
|
2024-03-16 17:34:42 +01:00
|
|
|
serverAliases = domains ++ (mkHosted webHost buckets);
|
2023-10-05 23:28:27 +02:00
|
|
|
|
2023-09-11 18:54:17 +02:00
|
|
|
locations."/".extraConfig = ''
|
2024-10-12 19:30:36 +02:00
|
|
|
proxy_pass http://127.0.0.1:${toString ports.s3_web};
|
2023-09-11 18:54:17 +02:00
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2024-03-16 17:34:42 +01:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
'';
|
2023-09-11 18:54:17 +02:00
|
|
|
};
|
2023-09-11 11:17:52 +02:00
|
|
|
};
|
|
|
|
}
|