I’m relatively new to HASS but I’m over the moon having found it. I’m trying to get HASS set up behind Nginx, but it seems that all of the documentation I’ve found expects the external URL to be at a subdomain (i.e. “ha.myurl.com”), whereas my existing Nginx configuration uses subdirectories (i.e. “myurl.com/ha”). I’ve got the basic redirect working, but all I get is the main logo. Chrome DevTools shows a litany loading errors where it’s clear that HA is attempting to load its resources from the root dir instead of “/ha”:
The resource https://myurl.com/static/fonts/roboto/Roboto-Medium.woff2 was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate `as` value and it is preloaded intentionally.
I see that there used to be “base_url” /“external_url” / “internal_url” properties within configuration.yaml, but I get config errors when attempting to set those. What’s the proper way to set up HA to expect requests at “myUrl/ha” instead of “myUrl”?