root proxy pass

This commit is contained in:
2025-07-03 10:43:54 -05:00
parent b6a6f833cc
commit 4c09641250
+4
View File
@@ -91,6 +91,10 @@
locations."/console" = { locations."/console" = {
proxyPass = "http://localhost:${toString opts.consolePort}/browser"; proxyPass = "http://localhost:${toString opts.consolePort}/browser";
}; };
# Add directive for s3like queries, which only accept root path allegedly
location."/" = {
proxyPass = "http://localhost:${toString opts.dataPort}";
};
}; };
}; };