-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.yaml
executable file
·157 lines (131 loc) · 4.77 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#------------------------------------------------------------------------------
# HOME ASSISTANT
#------------------------------------------------------------------------------
homeassistant:
# Name of the location where Home Assistant is running
name: Home
external_url: !secret homeassistant_external_url
internal_url: !secret homeassistant_internal_url
# Location required to calculate the time the sun rises and sets
latitude: !secret homeassistant_latitude
longitude: !secret homeassistant_longitude
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 0
# metric for Metric, imperial for Imperial
unit_system: imperial
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: !secret homeassistant_time_zone
# Customization file
customize: !include customize.yaml
auth_providers:
- type: homeassistant
#------------------------------------------------------------------------------
# FRONTEND
#------------------------------------------------------------------------------
frontend:
themes: !include_dir_merge_named themes
#------------------------------------------------------------------------------
# CONFIG
#------------------------------------------------------------------------------
config:
#------------------------------------------------------------------------------
# HTTP
#------------------------------------------------------------------------------
http:
use_x_forwarded_for: true
trusted_proxies:
# core
- 192.168.1.222
# allow all networks
- 0.0.0.0/0
#------------------------------------------------------------------------------
# SYSTEM HEALTH
#------------------------------------------------------------------------------
system_health:
#------------------------------------------------------------------------------
# API
#------------------------------------------------------------------------------
api:
#------------------------------------------------------------------------------
# TTS
#------------------------------------------------------------------------------
#tts:
# - platform: google_translate
# language: en
# cache: true
# cache_dir: /tmp/tts
# time_memory: 300
tts:
- platform: picotts
#------------------------------------------------------------------------------
# CONVERSATION
#------------------------------------------------------------------------------
conversation:
#------------------------------------------------------------------------------
# HISTORY
#------------------------------------------------------------------------------
history:
#------------------------------------------------------------------------------
# LOGBOOK
#------------------------------------------------------------------------------
logbook:
#------------------------------------------------------------------------------
# MAP
#------------------------------------------------------------------------------
map:
#------------------------------------------------------------------------------
# SUN
#------------------------------------------------------------------------------
sun:
#------------------------------------------------------------------------------
# InfluxDB
#------------------------------------------------------------------------------
influxdb:
api_version: 2
host: !secret influxdb_host
port: !secret influxdb_port
ssl: false
token: !secret influxdb_token
organization: !secret influxdb_organization
bucket: !secret influxdb_bucket
default_measurement: units
tags_attributes:
- friendly_name
tags:
source: HA
#------------------------------------------------------------------------------
# Node-RED
#------------------------------------------------------------------------------
panel_iframe:
nodered:
title: 'Node-Red'
icon: 'mdi:shuffle-variant'
url: 'http://192.168.1.222:1880/'
#------------------------------------------------------------------------------
# Recorder
#------------------------------------------------------------------------------
recorder:
db_url: !secret db_url
auto_purge: false
#------------------------------------------------------------------------------
# Includes
#------------------------------------------------------------------------------
#apple_tv: !include apple_tv.yaml
automation: !include automations.yaml
binary_sensor: !include binary_sensors.yaml
device_tracker: !include trackers.yaml
group: !include groups.yaml
homekit: !include homekit.yaml
ios:
#light: !include lights.yaml
media_player: !include media_players.yaml
media_source:
mobile_app:
mqtt: !include mqtt.yaml
plant: !include plants.yaml
script: !include scripts.yaml
sensor: !include sensors.yaml
#speedtestdotnet: !include speedtest.yaml
stream:
switch: !include switches.yaml
zone: !include zones.yaml