2024年11月23日星期六 下午10:11:04

Home Assistant Remote access test step by step(cf +vps+nginx+frp +raspberry pi 3B+)

2 年 前
#3843 引用
1
0
2 年 前
#3844 引用
debug http

step 1:


cd /home/homeassistant/.homeassistant


step 2:debug level


see:https://www.home-assistant.io/integrations/logger/

cd /home/homeassistant20221102/.homeassistant
cd /home/homeassistant20221103/.homeassistant
0
6 个月 前
#34213 引用
Configuring Home Assistant for Reverse Proxy

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

nano /config/configuration.yaml


Now add the following formatted YAML to the configuration file.
http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 192.168.1.10 #traefik


https://www.home-assistant.io/integrations/http/#reverse-proxies
0