Advertisement
penright

Untitled

May 22nd, 2023
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. homeassistant:
  2. # # Name of the location where Home Assistant is running
  3. # name: Home
  4. # # Location required to calculate the time the sun rises and sets
  5. # latitude: !secret latitude
  6. # longitude: !secret longitude
  7. # # Impacts weather/sunrise data (altitude above sea level in meters)
  8. # elevation: 1319
  9. # # metric for Metric, imperial for Imperial
  10. # unit_system: imperial
  11. # # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12. # time_zone: !secret time_zone
  13. #customize: customization.yaml
  14. packages: !include_dir_named packages
  15. customize: !include customize.yaml
  16. media_dirs:
  17. media: "/media"
  18.  
  19. #Enables person tracking, setup through config UI
  20. person:
  21.  
  22.  
  23. logger:
  24. default: info
  25. logs:
  26. custom_components.almond_plus: debug
  27. WazeRouteCalculator.WazeRouteCalculator: error
  28. googleapiclient.discovery: error
  29. # custom_components.workday: debug
  30.  
  31.  
  32. # Show links to resources in log and frontend
  33. #introduction:
  34.  
  35. # Enables the frontend
  36. frontend:
  37. themes: !include_dir_merge_named themes/
  38.  
  39. # Enables configuration UI
  40. config:
  41.  
  42. mobile_app:
  43. cloud:
  44.  
  45. http:
  46. use_x_forwarded_for: true
  47. trusted_proxies:
  48. - 172.0.0.0/8
  49. # - 172.30.33.2 #IP Reverse_Proxy Nginx ADGuard
  50. # - 127.0.0.1 #IP Reverse_Proxy Nginx
  51. # - 172.30.33.0 #Not sure why, but was being blocked
  52. # - 172.30.33.6
  53. # - 172.30.33.7
  54.  
  55.  
  56. # Checks for available updates
  57. # Note: This component will send some information about your system to
  58. # the developers to assist with development of Home Assistant.
  59. # For more information, please see:
  60. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  61. #Moved to UI 4/11/2022
  62. #updater:
  63.  
  64. # Discover some devices automatically
  65. #discovery:
  66.  
  67. # Allows you to issue voice commands from the frontend in enabled browsers
  68. conversation:
  69.  
  70. # Enables support for tracking state changes over time.
  71. history:
  72.  
  73. # View all events in a logbook
  74. logbook:
  75.  
  76. # Track the sun
  77. sun:
  78.  
  79. # # Example configuration.yaml entry
  80. # zwave:
  81. # usb_path: /dev/serial/by-id/usb-0658_0200-if00
  82. # network_key: !secret zwave_network_key
  83.  
  84. python_script:
  85.  
  86. # Text to speech
  87. tts:
  88. platform: google_translate
  89.  
  90. automation: !include automations.yaml
  91. automation mine: !include_dir_merge_list automation/
  92.  
  93. group: !include_dir_merge_named configuration/groups/
  94. #automation: !include_dir_merge_named configuration/automations/
  95. #sensor: !include_dir_merge_list configuration/sensors/
  96. #input_select: !include_dir_merge_named configuration/input_select/
  97.  
  98. # lovelace:
  99. # mode: yaml
  100. recorder:
  101. exclude:
  102. domains:
  103. - weather
  104. entity_globs:
  105. - sensor.vacuum_*
  106. - automation.vacuum_*
  107. entities:
  108. - sensor.rest980
  109. - camera.roomba
  110.  
  111. scene: !include scenes.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement