Added IGNORE_SSL option
This commit is contained in:
parent
f0afbad7a8
commit
c40ad42fc9
4 changed files with 11 additions and 2 deletions
|
@ -52,6 +52,8 @@ If you're using SSL, set the paths to your SSL files here. This is similar to th
|
||||||
The configurator fetches some data from your running HASS instance. If the API isn't available through the default URL, modify this variable to fix this.
|
The configurator fetches some data from your running HASS instance. If the API isn't available through the default URL, modify this variable to fix this.
|
||||||
#### HASS_API_PASSWORD (string)
|
#### HASS_API_PASSWORD (string)
|
||||||
If you plan on using the restart button, you have to set your API password. Calling the restart service of HASS is prohibited without authentication.
|
If you plan on using the restart button, you have to set your API password. Calling the restart service of HASS is prohibited without authentication.
|
||||||
|
#### IGNORE_SSL (bool)
|
||||||
|
Set IGNORE_SSL to `True` to disable SSL verification when connecting to the Home Assistant API (while fetching entities etc., not in your browser). This is useful if Home Assistant is configured with SSL, but the configurator accesses it via IP, in which case SSL verification will fail.
|
||||||
#### USERNAME (string)
|
#### USERNAME (string)
|
||||||
If you want to enable [HTTP basic authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) you can set the desired username here. The `:` character is not allowed.
|
If you want to enable [HTTP basic authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) you can set the desired username here. The `:` character is not allowed.
|
||||||
#### PASSWORD (string)
|
#### PASSWORD (string)
|
||||||
|
|
|
@ -12,6 +12,7 @@ Version 0.3.0 (2018-)
|
||||||
- LISTENPORT has been renamed to PORT (LISTENPORT still works though)
|
- LISTENPORT has been renamed to PORT (LISTENPORT still works though)
|
||||||
- Hiding git menu when git is disabled @danielperna84
|
- Hiding git menu when git is disabled @danielperna84
|
||||||
- Removed right dragging area for editor settings (Issue #102) @danielperna84
|
- Removed right dragging area for editor settings (Issue #102) @danielperna84
|
||||||
|
- Added IGNORE_SSL option to disables SSL verification when connecting to HASS API @danielperna84
|
||||||
|
|
||||||
Version 0.2.9 (2018-06-22)
|
Version 0.2.9 (2018-06-22)
|
||||||
- Material Icons and HASS-help now open in new tab instead of modal (Issues #85 and #34) @danielperna84
|
- Material Icons and HASS-help now open in new tab instead of modal (Issues #85 and #34) @danielperna84
|
||||||
|
|
|
@ -25,7 +25,6 @@ from http.server import BaseHTTPRequestHandler
|
||||||
import urllib.request
|
import urllib.request
|
||||||
from urllib.parse import urlparse, parse_qs, unquote
|
from urllib.parse import urlparse, parse_qs, unquote
|
||||||
|
|
||||||
|
|
||||||
### Some options for you to change
|
### Some options for you to change
|
||||||
LISTENIP = "0.0.0.0"
|
LISTENIP = "0.0.0.0"
|
||||||
PORT = 3218
|
PORT = 3218
|
||||||
|
@ -78,6 +77,8 @@ SESAME_TOTP_SECRET = None
|
||||||
VERIFY_HOSTNAME = None
|
VERIFY_HOSTNAME = None
|
||||||
# Prefix for environment variables
|
# Prefix for environment variables
|
||||||
ENV_PREFIX = "HC_"
|
ENV_PREFIX = "HC_"
|
||||||
|
# Ignore SSL errors when connecting to the HASS API
|
||||||
|
IGNORE_SSL = False
|
||||||
# Notification service like `notify.mytelegram`. Default is `persistent_notification.create`
|
# Notification service like `notify.mytelegram`. Default is `persistent_notification.create`
|
||||||
NOTIFY_SERVICE_DEFAULT = "persistent_notification.create"
|
NOTIFY_SERVICE_DEFAULT = "persistent_notification.create"
|
||||||
NOTIFY_SERVICE = NOTIFY_SERVICE_DEFAULT
|
NOTIFY_SERVICE = NOTIFY_SERVICE_DEFAULT
|
||||||
|
@ -3429,7 +3430,7 @@ def load_settings(settingsfile):
|
||||||
HASS_API_PASSWORD, CREDENTIALS, ALLOWED_NETWORKS, BANNED_IPS, BANLIMIT, \
|
HASS_API_PASSWORD, CREDENTIALS, ALLOWED_NETWORKS, BANNED_IPS, BANLIMIT, \
|
||||||
DEV, IGNORE_PATTERN, DIRSFIRST, SESAME, VERIFY_HOSTNAME, ENFORCE_BASEPATH, \
|
DEV, IGNORE_PATTERN, DIRSFIRST, SESAME, VERIFY_HOSTNAME, ENFORCE_BASEPATH, \
|
||||||
ENV_PREFIX, NOTIFY_SERVICE, USERNAME, PASSWORD, SESAME_TOTP_SECRET, TOTP, \
|
ENV_PREFIX, NOTIFY_SERVICE, USERNAME, PASSWORD, SESAME_TOTP_SECRET, TOTP, \
|
||||||
GIT, REPO, PORT
|
GIT, REPO, PORT, IGNORE_SSL
|
||||||
settings = {}
|
settings = {}
|
||||||
if settingsfile:
|
if settingsfile:
|
||||||
try:
|
try:
|
||||||
|
@ -3484,6 +3485,10 @@ def load_settings(settingsfile):
|
||||||
SESAME_TOTP_SECRET = settings.get("SESAME_TOTP_SECRET", SESAME_TOTP_SECRET)
|
SESAME_TOTP_SECRET = settings.get("SESAME_TOTP_SECRET", SESAME_TOTP_SECRET)
|
||||||
VERIFY_HOSTNAME = settings.get("VERIFY_HOSTNAME", VERIFY_HOSTNAME)
|
VERIFY_HOSTNAME = settings.get("VERIFY_HOSTNAME", VERIFY_HOSTNAME)
|
||||||
NOTIFY_SERVICE = settings.get("NOTIFY_SERVICE", NOTIFY_SERVICE_DEFAULT)
|
NOTIFY_SERVICE = settings.get("NOTIFY_SERVICE", NOTIFY_SERVICE_DEFAULT)
|
||||||
|
IGNORE_SSL = settings.get("IGNORE_SSL", IGNORE_SSL)
|
||||||
|
if IGNORE_SSL:
|
||||||
|
# pylint: disable=protected-access
|
||||||
|
ssl._create_default_https_context = ssl._create_unverified_context
|
||||||
USERNAME = settings.get("USERNAME", USERNAME)
|
USERNAME = settings.get("USERNAME", USERNAME)
|
||||||
PASSWORD = settings.get("PASSWORD", PASSWORD)
|
PASSWORD = settings.get("PASSWORD", PASSWORD)
|
||||||
if CREDENTIALS and (USERNAME is None or PASSWORD is None):
|
if CREDENTIALS and (USERNAME is None or PASSWORD is None):
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"ENFORCE_BASEPATH": false,
|
"ENFORCE_BASEPATH": false,
|
||||||
"SSL_CERTIFICATE": null,
|
"SSL_CERTIFICATE": null,
|
||||||
"SSL_KEY": null,
|
"SSL_KEY": null,
|
||||||
|
"IGNORE_SSL": false,
|
||||||
"HASS_API": "http://127.0.0.1:8123/api/",
|
"HASS_API": "http://127.0.0.1:8123/api/",
|
||||||
"HASS_API_PASSWORD": null,
|
"HASS_API_PASSWORD": null,
|
||||||
"USERNAME": null,
|
"USERNAME": null,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue