Replies: 3 comments 1 reply
-
I found there is a setting in Home Assistant that you need to set allowing access through a proxy. Once set, access to HA now works correctly. |
Beta Was this translation helpful? Give feedback.
-
To answer your initial question: you can add a custom config inside a It should point to the same server and port, and when clicking on the cog-icon (aka gear-icon), you should be able to add those custom rules. However, this is not recommended since you should just add the IP address of the proxy like you already found out |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello All - I'm attempting to access my Home Assistant system through NPM, but it's failing with a 404. After doing some research, it looks like I need to add this to work:
Include proxy_set_header in both location blocks: / and /api/websocket.
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
Q. Is there a way to define this in the 'Custom Nginx Configuration' tab?
This is how it looks in a test nginx proxy standalone system:
server {
listen 443 ssl;
listen [::]:443 ssl;
}
Beta Was this translation helpful? Give feedback.
All reactions