最近小米官方给 Home Assistant 开发了米家集成组件,米家集成是一个由小米官方提供支持的 Home Assistant 的集成组件,它可以让您在 Home Assistant 中使用小米 IoT 智能设备。
我是通过 ZimaOS 安装的 Home Assistant ,但是在使用 Lucky 反代后出现 400 BadRequest 的错误,搜索了下,很好解决。进入 Home Assistant 容器的终端,修改 configuration.yaml 文件,添加如下内容:
http:
use_x_forwarded_for: true
trusted_proxies:
- 192.168.31.0/24 # Add the IP address of the proxy server
就是将自己的 IP 段加入 trusted_proxies 中,比如我的小米路由器是 192.168.31.0/24 。改完之后保存,接着重启这个 Docker 镜像。
Leave a Reply