HTTP and HTTPS access with reverse proxy not working

Hi guys, I’am trying to access my HA with my own domain name using a reverse proxy. So by reading the documentation I’ve been able to write this config:

http:
  ssl_certificate: /config/certs/fullchain1.pem
  ssl_key: /config/certs/privkey1.pem
  use_x_forwarded_for: true
  trusted_proxies:
    - 172.17.0.2
    - 192.168.50.0/24

This kinda works, I can get to the HA auth page both using HTTP and HTTPS, but once I login I just get this:

I’ve checked the logs and I don’t see anything except an error while trying to read my yeelight bulb properties.

If you’re using a reverse proxy. those shouldn’t be there:

  ssl_certificate: /config/certs/fullchain1.pem
  ssl_key: /config/certs/privkey1.pem

What reverse proxy are you using?

I’m using NginxProxyManager

Then you should remove those entries above, restart, and then follow one of the many guides. REport back if you have issues with logs and info on what was setup so someone can help.

I’ve followed the guide and it did infact work, I just had to remove the cert par from the config and enable webesocket support on my reverse proxy.

Thanks a lot :grin:.