You can solve this issue on your side by adding reverse proxy endpoints for the other endpoints that ESX exposes, e.g.:
location /esx {
proxy_pass https://esx/;
}
location /sdk {
proxy_pass https://esx/sdk;
}
location /folder {
proxy_pass https://esx/folder;
}
location /ha-nfc {
proxy_pass https://esx/ha-nfc;
}
location /host {
proxy_pass https://esx/host;
}
I’ll try to figure out if we can avoid this, but I can’t immediately see a good way. The list above is what we currently use and we assume that they are available absolute.