Updated Hass.io documents (#2559)

This commit is contained in:
Alok Saboo 2017-05-03 22:31:13 -04:00 committed by Paulus Schoutsen
parent 15bf573fc2
commit f55a9b4256
4 changed files with 21 additions and 21 deletions

View File

@ -9,7 +9,7 @@ sharing: true
footer: true
---
Setup and manage a [let's encrypt](https://letsencrypt.org/) certificate. The first run will create the certificate and every other run will renew it if they will expire in 30 days. All other run make nothing.
Setup and manage a [Let's Encrypt](https://letsencrypt.org/) certificate. This will create a certificate on the first run and renew it if the certificate is expiring in the next 30 days.
```json
{
@ -18,7 +18,7 @@ Setup and manage a [let's encrypt](https://letsencrypt.org/) certificate. The fi
}
```
Option variables:
Configuration variables:
- **email** (*Required*): default empty. Your email for register on let's encrypt with your domains.
- **domains** (*Required*): default empty list. A list of domains for create/renew the certificate.
- **email** (*Required*): Your email address for registration on Let's Encrypt.
- **domains** (*Required*): A list of domains to create/renew the certificate.

View File

@ -9,7 +9,7 @@ sharing: true
footer: true
---
Setup a [mosquitto](https://mosquitto.org/) mqtt broker.
Set up a [mosquitto](https://mosquitto.org/) MQTT broker.
```json
{
@ -22,9 +22,9 @@ Setup a [mosquitto](https://mosquitto.org/) mqtt broker.
}
```
Option variables:
Configuration variables:
- **plain** (*Optional*): default true. Listen broaker on port 1883 without SSL/TLS.
- **ssl** (*Optional*): default false. Listen broker on port 8883 with SSL/TLS. Need to have certificates.
- **anonymous** (*Optional*): default true. Allow anonymous connection. If *logins* is set, anonymous user can only read data.
- **logins** (*Optional*): default empty. A list of user that will be create with *username* and *password*.
- **plain** (*Optional*): Listen to broker on port 1883 without SSL/TLS. Defaults to `true`.
- **ssl** (*Optional*): Listen to broker on port 8883 with SSL/TLS. This requires certificates. Defaults to `false`.
- **anonymous** (*Optional*): Allow anonymous connection. If *logins* is set, anonymous user can only read data. Defaults to `true`.
- **logins** (*Optional*): A list of user that will be created with *username* and *password*.

View File

@ -9,7 +9,7 @@ sharing: true
footer: true
---
Setup a [samba](https://samba.org/) server. Allow to access severals hass.io folders with windows network shares.
This allows you to set up a [Samba](https://samba.org/) server to access hass.io folders using Windows network shares.
```json
{
@ -23,12 +23,12 @@ Setup a [samba](https://samba.org/) server. Allow to access severals hass.io fol
}
```
Option variables:
Configuration variables:
- **workgroup** (*Optional*): default `WORKGROUP`. Set network workgroup.
- **guest** (*Optional*): default true. Allow login without a username or password.
- **map_config** (*Optional*): default true. Expose homeassistant config folder.
- **map_addons** (*Optional*): default true. Expose local custom addons folder.
- **map_ssl** (*Optional*): default false. Expose ssl folder. Be carfuly with that option!
- **username** (*Optional*): default empty. The username for login if guest login is not active.
- **password** (*Optional*): default empty. Set the password for `username`. A empty password will be not supported.
- **guest** (*Optional*): Allow login without a username or password. Defaults to `true`.
- **map_config** (*Optional*): Expose Home Assistant configuration folder. Defaults to `true`.
- **map_addons** (*Optional*): Expose local custom addons folder. Defaults to `true`.
- **map_ssl** (*Optional*): Expose SSL folder. Be careful with this option! Defaults to `false`.
- **username** (*Optional*): The username for logging in if guest login is not used.
- **password** (*Optional*): Password for `username`. An empty password is not supported.

View File

@ -9,7 +9,7 @@ sharing: true
footer: true
---
Setup a [ssh](https://openssh.org/) server. Allow to access severals hass.io folders with ssh client. It allow also to do some tunneling for access from outside. It should by used only on a ResinOS platform, generic linux would have here own ssh server.
Setting up a [SSH](https://openssh.org/) server allows access to hass.io folders with SSH client. It also allows tunneling for access from an external network. Please note that you only need to do this on a ResinOS platform as most Linux flavors have their own SSH server.
```json
{
@ -19,6 +19,6 @@ Setup a [ssh](https://openssh.org/) server. Allow to access severals hass.io fol
}
```
Option variables:
Configuration variables:
- **authorized_keys** (*Required*): default empty. Your public-keys for authorized keyfile. Every element will be a line inside that file.
- **authorized_keys** (*Required*): Your public-keys for authorized keyfile. Every element will be a line inside that file.