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