fix proxy locations for minio service

This commit is contained in:
2025-07-02 17:07:20 -05:00
parent 01b28d5d3c
commit 7c70ebb83b
+8 -4
View File
@@ -80,11 +80,14 @@
forceSSL = true;
enableACME = true;
acmeRoot = null;
locations."/" = {
proxyPass = "http://localhost:${toString opts.dataPort}";
locations."/dev" = {
proxyPass = "http://localhost:${toString opts.dataPort}/dev";
};
locations."/console/" = {
proxyPass = "http://localhost:${toString opts.consolePort}";
locations."/prod" = {
proxyPass = "http://localhost:${toString opts.dataPort}/prod";
};
locations."/console" = {
proxyPass = "http://localhost:${toString opts.consolePort}/browser";
};
};
};
@@ -97,3 +100,4 @@
};
};
}