fix(attic): Use correct bucket and allow larger files

This commit is contained in:
Tom Hubrecht 2023-12-05 23:10:36 +01:00
parent ecee23d4df
commit a94416697f

View file

@ -37,7 +37,7 @@ in {
storage = {
type = "s3";
region = "garage";
bucket = "cachix-dgnum";
bucket = "attic-dgnum";
endpoint = "https://s3.dgnum.eu";
};
};
@ -50,7 +50,13 @@ in {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://127.0.0.1:9090";
locations."/" = {
proxyPass = "http://127.0.0.1:9090";
extraConfig = ''
client_max_body_size 100M;
'';
};
};
};