homeassistant

This commit is contained in:
Mark Janssen 2024-09-25 14:32:55 +02:00
parent fc443544d3
commit 381a0e2c2e
Signed by: foobar
GPG key ID: D8674D8FC4F69BD2
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,14 @@
location /api/ {
proxy_pass http://127.0.0.1:8123;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location / {
proxy_pass http://127.0.0.1:8123;
proxy_http_version 1.1;
proxy_set_header Host $host;
}