Update HASS Configurator documentation (#3993)

* Updated options

* New options and screenshot

* Added note about clearing banned IPs
This commit is contained in:
Daniel Perna 2017-11-16 08:01:38 +01:00 committed by Fabian Affolter
parent 82b0a39a7d
commit 3796a3b946
2 changed files with 14 additions and 1 deletions

View file

@ -46,7 +46,9 @@ Screenshot of the HASS Configurator.
"ssl": false,
"allowed_networks": ["192.168.0.0/16"],
"banned_ips": ["8.8.8.8"],
"ignore_pattern": ["__pycache__"]
"banlimit": 0,
"ignore_pattern": ["__pycache__"],
"dirsfirst": false,
}
```
@ -55,7 +57,9 @@ Screenshot of the HASS Configurator.
- **ssl** (*Optional*): Enable or Disable SSL for the editor.
- **allowed_networks** (*Optional*): Limit access to the configurator by adding allowed IP addresses / networks to the list.
- **banned_ips** (*Optional*): List of statically banned IP addresses.
- **banlimit** (*Optional*): Ban access from IPs after `banlimit` failed login attempts. The default value `0` disables this feature. Restart the add-on to clear the list of banned IP addresses.
- **ignore_pattern** (*Optional*): Files and folders to ignore in the UI.
- **dirsfirst** (*Optional*): List directories before files in the filebrowser.
### {% linkable_title Embedding into Home-Assistant %}