Home Configuring Home Assistant for Reverse Proxy
Post
Cancel

Configuring Home Assistant for Reverse Proxy

This is a quick reminder for the code that needs to be added to the Home Assistant configuration YAML to get things working with a reverse proxy.

In the terminal, edit the configuration YAML

1
nano /config/configuration.yaml

Now add the following formatted YAML to the configuration file.

1
2
3
4
http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 192.168.1.10 #traefik

For more information, check out the documentation here

This post is licensed under CC BY 4.0 by the author.