52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
homeassistant:
|
|
packages: !include_dir_named packages/
|
|
|
|
# Loads default set of integrations. Do not remove.
|
|
default_config:
|
|
|
|
# Load frontend themes from the themes folder
|
|
frontend:
|
|
themes: !include_dir_merge_named themes
|
|
|
|
lovelace:
|
|
dashboards: !include dashboards/dashboards.yaml
|
|
|
|
automation: !include_dir_merge_list automations/
|
|
scene: !include scenes.yaml
|
|
input_boolean: !include helpers/input_boolean.yaml
|
|
input_number: !include helpers/input_number.yaml
|
|
input_select: !include helpers/input_select.yaml
|
|
input_datetime: !include helpers/input_datetime.yaml
|
|
counter: !include helpers/counter.yaml
|
|
timer: !include helpers/timer.yaml
|
|
input_text: !include helpers/input_text.yaml
|
|
rest_command: !include helpers/rest_command.yaml
|
|
shell_command: !include helpers/shell_command.yaml
|
|
|
|
http:
|
|
use_x_frame_options: false
|
|
use_x_forwarded_for: true
|
|
trusted_proxies:
|
|
- 10.60.1.1
|
|
|
|
### notify_events ###
|
|
notify_events:
|
|
token: !secret notify_event_token
|
|
### SMTP ###
|
|
notify:
|
|
- name: "mailgun_smtp"
|
|
platform: smtp
|
|
server: "smtp.mailgun.org"
|
|
port: 587
|
|
timeout: 15
|
|
sender: "nukamail@vault983.com"
|
|
encryption: starttls
|
|
username: "nukamail@mail.vault983.com"
|
|
password: !secret email_password
|
|
recipient:
|
|
- "joshua@cnjmail.com"
|
|
- "polly@cnjmail.com"
|
|
sender_name: "Home Assistant"
|
|
- name: "notify_events"
|
|
platform: notify_events
|