
* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
1.5 KiB
title, description, featured
title | description | featured |
---|---|---|
Samba | Manage your Home Assistant and custom add-ons over Samba. | true |
This add-on allows you to set up a Samba server to access Hass.io folders using Windows network shares.
Be careful when setting up port forwarding for remote access. If you don't restrict access by setting a username and strong password, your configuration could be exposed to the entire Internet!
{
"workgroup": "WORKGROUP",
"username": "",
"password": "",
"interface": "eth0",
"allow_hosts": [
"10.0.0.0/8",
"172.16.0.0/12",
"192.168.0.0/16"
]
}
{% configuration %}
workgroup:
description: Set network workgroup name.
required: false
default: "WORKGROUP
"
type: string
username:
description: Username for logging in.
required: true
type: string
password:
description: Password for username
. An empty password is not supported.
required: true
type: string
interface:
description: Interface that will start the share. Normally this is eth0
for ethernet wired connection and wlan0
for wireless connection. If you are running on an Intel NUC this could also be enp3s0
for ethernet or wlp5s0
for wireless connection.
required: false
type: string
allow_hosts:
description: The hosts that are allowed to connect to your Samba server. By default it is limited to people within the same local network.
required: false
default: '["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
'
type: list
{% endconfiguration %}