1. 背景
默认的 hass 是不允许外网访问的,直接设置反向代理会出现 400 错误
2. 解决方法
修改docker/home-assistant/config/configuration.yaml
,新增 ⚠️其中的 ip 地址填写的是容器内部的 ip 地址不是外部地址
http: use_x_forwarded_for: true trusted_proxies: - 192.168.0.0/24 # Add the IP address of the proxy server。 - 172.17.0.0/24
重启 hass docker compose restart