minio: Allow body of 500M. Allow manduria-wg

This commit is contained in:
Giulio De Pasquale 2023-01-01 13:33:52 +01:00
parent 9fa04584cc
commit 63b2a4aa4b

View File

@ -13,8 +13,10 @@ in {
locations."/" = {
proxyPass = "http://127.0.0.1:9000";
extraConfig = ''
client_max_body_size 500M;
allow 10.0.0.0/24;
${lib.concatMapStrings (x: "allow ${x};") network.gdevices-wg}
${lib.concatMapStrings (x: "allow ${x};") network.gdevices-wg }
allow ${network.manduria-wg};
deny all;
'';
};