Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. homeassistant:
  2.  
  3. name: Home
  4.  
  5. latitude: !secret home_latitude
  6. longitude: !secret home_longitude
  7.  
  8. elevation: !secret home_elevation
  9.  
  10. unit_system: metric
  11.  
  12. time_zone: Europe/Rome
  13.  
  14. customize: !include includes/customize.yaml
  15. customize_glob: !include includes/customize_glob.yaml
  16. packages: !include_dir_named packages
  17.  
  18.  
  19. logger:
  20. default: info
  21. logs:
  22. homeassistant.components.sensor.template: debug
  23.  
  24.  
  25.  
  26. frontend:
  27.  
  28. config:
  29.  
  30. updater:
  31.  
  32. discovery:
  33. ignore:
  34. - apple_tv
  35. - google_cast
  36. - octoprint
  37. - plex_mediaserver
  38.  
  39.  
  40. mqtt:
  41. broker: 192.168.1.252
  42. port: 1883
  43. client_id: home-assistant-1
  44. username: !secret mosquitto_username
  45. password: !secret mosquitto_password
  46.  
  47. conversation:
  48.  
  49. history:
  50.  
  51. logbook:
  52.  
  53. map:
  54.  
  55. sun:
  56.  
  57. lovelace:
  58. mode: yaml
  59.  
  60. ffmpeg:
  61. ffmpeg_bin: /usr/bin/avconv
  62.  
  63. sensor: !include includes/sensors.yaml
  64.  
  65. recorder:
  66. purge_keep_days: 2
  67.  
  68. light: !include includes/lights.yaml
  69.  
  70. media_player: !include includes/media_players.yaml
  71.  
  72. camera: !include includes/cameras.yaml
  73.  
  74. device_tracker: !include includes/device_trackers.yaml
  75.  
  76. octoprint: !include includes/octoprints.yaml
  77.  
  78. switch: !include includes/switches.yaml
  79.  
  80. zone: !include includes/zones.yaml
  81.  
  82. tts:
  83. - platform: google
  84.  
  85. duckdns:
  86. domain: xxx
  87. access_token: !secret duckdns_access_token
  88.  
  89. http:
  90. api_password: !secret api_pass
  91. ssl_certificate: /home/homeassistant/dehydrated/certs/xxx.duckdns.org/fullchain.pem
  92. ssl_key: /home/homeassistant/dehydrated/certs/xxx.duckdns.org/privkey.pem
  93. base_url: xxx.duckdns.org:8123
  94.  
  95. cloud:
  96.  
  97. group: !include includes/groups.yaml
  98. automation: !include includes/automations.yaml
  99. script: !include includes/scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement