Update gipat
This commit is contained in:
0
services/homeassist/.gitignore
vendored
Normal file
0
services/homeassist/.gitignore
vendored
Normal file
19
services/homeassist/configuration.example.yaml
Normal file
19
services/homeassist/configuration.example.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
http:
|
||||
# For extra security set this to only accept connections on localhost if NGINX is on the same machine
|
||||
# Uncommenting this will mean that you can only reach Home Assistant using the proxy, not directly via IP from other clients.
|
||||
# server_host: 127.0.0.1
|
||||
use_x_forwarded_for: true
|
||||
# You must set the trusted proxy IP address so that Home Assistant will properly accept connections
|
||||
# Set this to your NGINX machine IP, or localhost if hosted on the same machine.
|
||||
trusted_proxies: 192.168.0.101
|
||||
|
||||
# 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
|
||||
11
services/homeassist/docker-compose.yaml
Normal file
11
services/homeassist/docker-compose.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
services:
|
||||
homeassistant:
|
||||
container_name: homeassistant
|
||||
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||||
volumes:
|
||||
- /data/services/homeassistant:/config
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /run/dbus:/run/dbus:ro
|
||||
restart: unless-stopped
|
||||
privileged: true
|
||||
network_mode: host
|
||||
Reference in New Issue
Block a user