Site updated at 2017-06-17 20:00:42 UTC

This commit is contained in:
Travis CI 2017-06-17 20:00:42 +00:00
parent 35ab32b13f
commit 933563f0be
808 changed files with 11423 additions and 2163 deletions

View file

@ -60,14 +60,14 @@
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_addons/bluetooth_bcm43xx.markdonw'>Edit this page on GitHub</a></div>
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_addons/bluetooth_bcm43xx.markdown'>Edit this page on GitHub</a></div>
<header>
<h1 class="title indent">
Bluetooth BCM43xx
</h1>
</header>
<hr class="divider">
Start Bluetooth for BCM43xx chipset on startup. Like Raspberry Pi3
<p>Start Bluetooth for BCM43xx chipset on startup. Like Raspberry Pi3</p>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">

View file

@ -60,32 +60,34 @@
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_addons/dnsmasq.markdonw'>Edit this page on GitHub</a></div>
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_addons/dnsmasq.markdown'>Edit this page on GitHub</a></div>
<header>
<h1 class="title indent">
Dnsmasq
</h1>
</header>
<hr class="divider">
Setup and manage a [Dnsmasq](http://thekelleys.org.uk/dnsmasq/doc.html) 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.
<p class='note warning'>
<p>Setup and manage a <a href="http://thekelleys.org.uk/dnsmasq/doc.html">Dnsmasq</a> 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.</p>
<p class="note warning">
At the moment, it will not work with resinos!
</p>
```json
{
"defaults": ["8.8.8.8", "8.8.4.4"],
"forwards": [
{"domain": "mystuff.local", "server": "192.168.1.40"}
],
"hosts": [
{"host": "home.mydomain.io", "ip": "192.168.1.10"}
],
}
```
Configuration variables:
- **defaults** (*Required*): A list of dns server to forward default requests.
- **forwards** (*Optional*): A list of domains that will forward to a specific server.
- **hosts** (*Optional*): A list of hosts to resolve it static.
<div class="language-json highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
</span><span class="nt">"defaults"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="s2">"8.8.8.8"</span><span class="p">,</span><span class="w"> </span><span class="s2">"8.8.4.4"</span><span class="p">],</span><span class="w">
</span><span class="nt">"forwards"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="w">
</span><span class="p">{</span><span class="nt">"domain"</span><span class="p">:</span><span class="w"> </span><span class="s2">"mystuff.local"</span><span class="p">,</span><span class="w"> </span><span class="nt">"server"</span><span class="p">:</span><span class="w"> </span><span class="s2">"192.168.1.40"</span><span class="p">}</span><span class="w">
</span><span class="p">],</span><span class="w">
</span><span class="nt">"hosts"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="w">
</span><span class="p">{</span><span class="nt">"host"</span><span class="p">:</span><span class="w"> </span><span class="s2">"home.mydomain.io"</span><span class="p">,</span><span class="w"> </span><span class="nt">"ip"</span><span class="p">:</span><span class="w"> </span><span class="s2">"192.168.1.10"</span><span class="p">}</span><span class="w">
</span><span class="p">],</span><span class="w">
</span><span class="err">}</span><span class="w">
</span></code></pre>
</div>
<p>Configuration variables:</p>
<ul>
<li><strong>defaults</strong> (<em>Required</em>): A list of dns server to forward default requests.</li>
<li><strong>forwards</strong> (<em>Optional</em>): A list of domains that will forward to a specific server.</li>
<li><strong>hosts</strong> (<em>Optional</em>): A list of hosts to resolve it static.</li>
</ul>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">