mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-24 11:56:47 +00:00

* fix spelling errors * Update binary_sensor.xiaomi_aqara.markdown Reverts to previous revision before spell check. * Update tellstick.markdown Reverts to previous revision before spell check. * Update owntracks_two_mqtt_broker.markdown Reverts to previous revision before spell check. * Update cla_sign.html Reverts to previous revision before spell check. * Update credits.markdown Reverts to previous revision before spell check. * Update api.markdown Fixed spell checker changing noone to no one.
1.5 KiB
1.5 KiB
layout, title, description, date, sidebar, comments, sharing, footer, featured
layout | title | description | date | sidebar | comments | sharing | footer | featured |
---|---|---|---|---|---|---|---|---|
page | Samba | Manage your Home Assistant and custom addons over Samba. | 2017-04-30 13:28 | true | false | true | true | true |
This allows you to set up a Samba server to access hass.io folders using Windows network shares.
{
"name": "hassio",
"workgroup": "WORKGROUP",
"guest": true,
"map": {
"config": true,
"addons": true,
"share": true,
"backup": true,
"ssl": false,
},
"username": "",
"password": "",
"interface": "eth0"
}
Configuration variables:
- name (Optional): default
hassio
. Set netbios name of hassio device. - workgroup (Optional): default
WORKGROUP
. Set network workgroup. - guest (Optional): Allow login without a username or password. Defaults to
true
. - map (Optional): Control which folder will be expose.
config
is for Home Assistant configuration folder.addons
for local custom repositiory.share
is a folder that can access from add-ons and Home Assistant too.backup
for access to snapshot files.ssl
for certificate storage, be careful with this option! Defaults all totrue
, except forssl
. - username (Optional): The username for logging in if guest login is not used.
- password (Optional): Password for
username
. An empty password is not supported. - interface (Optional): Interface on that will start the share. Normally is
eth0
for ethernet wired connection andwlan0
for wireless connection.