forked from DGNum/infrastructure
fix(attic): Use correct bucket and allow larger files
This commit is contained in:
parent
ecee23d4df
commit
a94416697f
1 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue