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; forceSSL = true;
enableACME = true; enableACME = true;
acmeRoot = null; acmeRoot = null;
locations."/" = { locations."/dev" = {
proxyPass = "http://localhost:${toString opts.dataPort}"; proxyPass = "http://localhost:${toString opts.dataPort}/dev";
}; };
locations."/console/" = { locations."/prod" = {
proxyPass = "http://localhost:${toString opts.consolePort}"; proxyPass = "http://localhost:${toString opts.dataPort}/prod";
};
locations."/console" = {
proxyPass = "http://localhost:${toString opts.consolePort}/browser";
}; };
}; };
}; };
@@ -97,3 +100,4 @@
}; };
}; };
} }