The Simulacrum: Stage 5 #113

Merged
max merged 5 commits from pr-simulacrum-stage-5 into master 2024-08-16 20:54:11 +03:00
Showing only changes of commit 55b60f30d6 - Show all commits

View file

@ -33,7 +33,7 @@
};
};
garage = {
garage = config.lib.forService "attic" {
keys.attic.locksmith = {
nodes = config.services.attic.nodes.server;
owner = "atticd";
@ -48,14 +48,16 @@
serverAddrs = map
(node: depot.hours.${node}.interfaces.primary.addrPublic)
config.services.attic.nodes.server;
in {
in config.lib.forService "attic" {
cache.target = serverAddrs;
};
ways.cache-api = {
ways = config.lib.forService "attic" {
cache-api = {
consulService = "atticd";
extras.extraConfig = ''
client_max_body_size 4G;
'';
};
};
}