Hi there, I’ve been running an nginx proxy for a while now for easy hostnames internally accessing services. I’ve recently set up wildcard ssl certs for a domain I purchased and changed my nginx config to use SSL. However I can’t get home assistant to work, I was able to sign in but then it errors, unable to connect. I’ve added some proxy pass variables and http information from googling but now it just 404’s.
Home assistant isn’t configured for SSL, just the connection to nginx.
In a nutshell, web sockets are a way to do communication in a way that stays connected. Regular HTTP is connectionless, meaning it finds the URL resource you asked for, sends it, and then disconnects.
A web socket will maintain the connection, with the understanding that more requests are coming. Kind of like SSH. You connect once, do multiple things, and disconnect only when you’re done.