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
本文转载自: https://blog.csdn.net/Hydrog/article/details/142522067
版权归原作者 养一只二哈 所有, 如有侵权,请联系我们删除。
版权归原作者 养一只二哈 所有, 如有侵权,请联系我们删除。