38 lines
904 B
YAML
38 lines
904 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:
|
|
use_x_frame_options: false
|
|
use_x_forwarded_for: true
|
|
trusted_proxies:
|
|
- 192.168.1.180
|
|
- 192.168.1.1
|
|
- 192.168.1.62
|
|
- 192.168.1.210
|
|
### 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: "Vault 983 Home Assistant"
|
|
- name: dakboard_json
|
|
platform: file
|
|
filename: /config/www/status.json
|
|
timestamp: false |