diff --git a/addons/dnsmasq/index.html b/addons/dnsmasq/index.html index efaad8a0ce..241ce5357d 100644 --- a/addons/dnsmasq/index.html +++ b/addons/dnsmasq/index.html @@ -76,6 +76,9 @@
Setup and manage a Dnsmasq dns server. This allow your to manipulate some dns requests. I.e. that inside your network, your homeassistant domain will resolve with a internal address.
+
+interface
options are for resinos based installation. On other system you can set it to ""
, for listen on every interface.
+
{
"defaults": ["8.8.8.8", "8.8.4.4"],
"forwards": [
diff --git a/addons/mariadb/index.html b/addons/mariadb/index.html
index f1493628d3..8c08294356 100644
--- a/addons/mariadb/index.html
+++ b/addons/mariadb/index.html
@@ -82,7 +82,7 @@
{
"username": "hass",
"host": "172.17.0.1",
- "password": null
+ "password": "securePassword"
}
],
"rights": [
@@ -115,6 +115,12 @@
+ Home Assistant configuration
+Use the following configuration in Home Assistant to use the database above:
+recorder:
+ db_url: mysql://hass:securePassword@127.0.0.1/homeassistant
+
+