mirror of
https://github.com/hassio-addons/addon-tautulli.git
synced 2025-05-04 19:11:24 +00:00
Remove HIBP checks (#121)
This commit is contained in:
parent
dcddccd08e
commit
86db0c484c
3 changed files with 0 additions and 19 deletions
|
@ -67,14 +67,10 @@ to prevent users from using your installation for themselves.
|
|||
This option is HIGHLY recommended in case you expose this add-on to the outside
|
||||
world.
|
||||
|
||||
**Note**: _This option support secrets, e.g., `!secret tautulli_username`._
|
||||
|
||||
### Option: `password`
|
||||
|
||||
Password for authenticating with Tautulli interface.
|
||||
|
||||
**Note**: _This option support secrets, e.g., `!secret tautulli_password`._
|
||||
|
||||
### Option: `ssl`
|
||||
|
||||
Enables/Disables SSL (HTTPS) on the web interface of Tautulli. Set it `true`
|
||||
|
@ -92,14 +88,6 @@ The private key file to use for SSL.
|
|||
|
||||
**Note**: _The file MUST be stored in `/ssl/`, which is the default_
|
||||
|
||||
### Option: `i_like_to_be_pwned`
|
||||
|
||||
Adding this option to the add-on configuration allows to you bypass the
|
||||
HaveIBeenPwned password requirement by setting it to `true`.
|
||||
|
||||
**Note**: _We STRONGLY suggest picking a stronger/safer password instead of
|
||||
using this option! USE AT YOUR OWN RISK!_
|
||||
|
||||
### Option: `leave_front_door_open`
|
||||
|
||||
Adding this option to the add-on configuration allows you to disable
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
"ssl": "bool",
|
||||
"certfile": "str",
|
||||
"keyfile": "str",
|
||||
"i_like_to_be_pwned": "bool?",
|
||||
"leave_front_door_open": "bool?"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,12 +14,6 @@ if ! bashio::config.true 'leave_front_door_open'; then
|
|||
bashio::config.require.password;
|
||||
fi
|
||||
|
||||
# Require a secure password
|
||||
if bashio::config.has_value 'password' \
|
||||
&& ! bashio::config.true 'i_like_to_be_pwned'; then
|
||||
bashio::config.require.safe_password
|
||||
fi
|
||||
|
||||
# Check SSL cerrificate
|
||||
bashio::config.require.ssl
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue