From 156c6e2025649d1927390062f74cd8afd9c940a7 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 23 Aug 2018 22:16:31 +0200 Subject: [PATCH] Remove commented out API password from default config (#16147) --- homeassistant/config.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/homeassistant/config.py b/homeassistant/config.py index 1c47a5e036c..45505bbbc9b 100644 --- a/homeassistant/config.py +++ b/homeassistant/config.py @@ -75,11 +75,9 @@ frontend: # Enables configuration UI config: -http: - # Secrets are defined in the file secrets.yaml - # api_password: !secret http_password - # Uncomment this if you are using SSL/TLS, running in Docker container, etc. - # base_url: example.duckdns.org:8123 +# Uncomment this if you are using SSL/TLS, running in Docker container, etc. +# http: +# base_url: example.duckdns.org:8123 # Checks for available updates # Note: This component will send some information about your system to @@ -126,7 +124,7 @@ script: !include scripts.yaml DEFAULT_SECRETS = """ # Use this file to store secrets like usernames and passwords. # Learn more at https://home-assistant.io/docs/configuration/secrets/ -http_password: welcome +some_password: welcome """