Home Assistant 外网域名访问配置教程

Home Assistant 版本:

前几天部署了Home Assistant 和XiaoMi Home,是通过IP加端口访问;然后本地部署了nginx ui,反向代理Home Assistant 发现会报错(400:Bad Request),Baidu和Bing了好几篇文章,发现都不行;

要修改的配置文件:configuration.yaml

像什么加下面的错误配置,会导致Home Assistant 进入维护模式

http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 127.0.0.1

正确的配置应该是下面的配置;IP是Home Assistant 部署的服务器IP,本地域名和外网域名访问,一般填写127.0.0.1;

http:
  use_x_forwarded_for: true
  trusted_proxies: IP

完整配置

# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

http:
  use_x_forwarded_for: true
  trusted_proxies: 192.168.31.198

家里局域网用域名可以访问,但是frp到公网不行,拒绝访问;



手机观看扫描下方微信小程序二维码


知识共享许可协议本作品采用知识共享署名-相同方式共享 4.0 国际许可协议进行许可。

相关推荐

Ubuntu 怎么安装FRP

通过本文的介绍,您已经了解了如何在 Ubuntu 操作系统上安装和配置 FRP。使用 FRP,您可以轻松地将内网服务映射到公网。

暂无评论