mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
50 lines
838 B
TOML
50 lines
838 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
|
|
[config]
|
|
|
|
[[config.domains]]
|
|
serviceName = "homeassistant"
|
|
port = 8123
|
|
host = "${main_domain}"
|
|
|
|
env = []
|
|
|
|
[[config.mounts]]
|
|
filePath = "configuration.yaml"
|
|
content = """
|
|
|
|
# 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.0.0/16 # Local LAN Subnet
|
|
- 172.0.0.0/8 # Docker Subnet
|
|
- 10.0.0.0/16 # Docker Swarm Subnet
|
|
"""
|
|
|
|
[[config.mounts]]
|
|
filePath = "automations.yaml"
|
|
content = """
|
|
"""
|
|
|
|
[[config.mounts]]
|
|
filePath = "scripts.yaml"
|
|
content = """
|
|
"""
|
|
|
|
[[config.mounts]]
|
|
filePath = "scenes.yaml"
|
|
content = """
|
|
"""
|