25 lines
573 B
YAML
25 lines
573 B
YAML
# 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:
|
|
ssl_certificate: "/ssl/ha-fullchain.pem"
|
|
ssl_key: "/ssl/ha-privkey.pem"
|
|
use_x_forwarded_for: true
|
|
trusted_proxies:
|
|
- 10.1.0.0/16
|
|
|
|
tts:
|
|
- platform: picotts
|
|
|
|
switch: !include switches.yaml
|
|
binary_sensor: !include binary_sensors.yaml
|
|
light: !include lights.yaml
|
|
sensor: !include sensors.yaml |