-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
139 lines (122 loc) · 3.04 KB
/
configuration.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# some general configuration first
homeassistant:
name: Home
latitude: !secret ha_lat
longitude: !secret ha_long
elevation: !secret ha_elev
unit_system: metric
time_zone: Europe/Berlin
customize: !include customize.yaml
auth_providers:
- type: homeassistant
- type: trusted_networks
trusted_networks:
- 127.0.0.1
- ::1
- !secret trusted_range
logger:
default: warn
logs:
custom_components.sony: debug
custom_components.sony.media_player: debug
# aiounifi: debug
# homeassistant.components.unifi: debug
# homeassistant.components.switch.unifi: debug
recorder:
db_url: !secret ha_recorder_db
purge_interval: 0
mqtt:
broker: !secret mqtt_broker_fqdn
port: 1883
#username: !secret ha_mqtt_username
#password: !secret ha_mqtt_password
#certificate: !secret ha_mqtt_cert
client_id: hass-vm
#tls_version: '1.2'
telegram_bot:
- platform: broadcast
api_key: !secret telegram_api_key
allowed_chat_ids:
- !secret telegram_chat_id
#zoneminder:
# host: !secret zoneminder_fqdn
# path_zms: /cgi-bin/nph-zms
weather:
- platform: openweathermap
api_key: !secret owm_api_key
ffmpeg:
ffmpeg_bin: /usr/bin/ffmpeg
updater:
reporting: False
tts:
- platform: google
frontend:
javascript_version: latest
logbook:
exclude:
domains:
- group
- scene
# enabled components
conversation:
discovery:
config:
history:
sun:
map:
system_health:
zwave:
usb_path: !secret zwave_usb
network_key: !secret zwave_secret
upnp:
#cloud:
# google_actions:
# filter:
# include_domains:
# - climate
# - switch
# - light
# exclude_domains:
# - group
# - scene
http:
server_port: 8123
use_x_forwarded_for: true
trusted_proxies: 127.0.0.1
ip_ban_enabled: True
login_attempts_threshold: 3
server_host: 127.0.0.1
custom_updater:
track:
- cards
- components
card_urls:
- https://raw.githubusercontent.com/kalkih/mini-media-player/master/tracker.json
- https://raw.githubusercontent.com/kalkih/simple-weather-card/master/tracker.json
- https://raw.githubusercontent.com/kalkih/mini-graph-card/master/tracker.json
component_urls:
- https://raw.githubusercontent.com/dilruacs/media_player.sony/master/custom_components.json
lovelace:
mode: yaml
# everything else through includes
sensor: !include_dir_merge_list sensors
binary_sensor: !include binary_sensors.yaml
group: !include groups.yaml
automation: !include_dir_merge_list automation
script: !include scripts.yaml
light: !include lights.yaml
switch: !include switches.yaml
camera: !include cameras.yaml
device_tracker: !include device_trackers.yaml
climate: !include climate.yaml
calendar: !include calendars.yaml
media_player: !include media_players.yaml
alert: !include alerts.yaml
notify: !include notify.yaml
timer: !include timers.yaml
input_select: !include input/select.yaml
input_boolean: !include input/boolean.yaml
input_number: !include input/number.yaml
sabnzbd: !include usenet.yaml
zone: !include zones.yaml
shell_command: !include shell.yaml