Skip to content

Commit dbce759

Browse files
committed
Site updated at 2017-05-18 12:17:38 UTC
1 parent 5cfcb41 commit dbce759

File tree

27 files changed

+189
-38
lines changed

27 files changed

+189
-38
lines changed

addons/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ <h1 class="title indent">
7373
<li><a href='/addons/duckdns/'>Duck DNS</a></li>
7474
<li><a href='/addons/lets_encrypt/'>Let's Encrypt</a></li>
7575
<li><a href='/addons/mosquitto/'>Mosquitto MQTT broker</a></li>
76+
<li><a href='/addons/nginx_proxy/'>Nginx SSL proxy</a></li>
7677
<li><a href='/addons/ssh/'>SSH Server</a></li>
7778
<li><a href='/addons/samba/'>Samba</a></li>
7879
</ul>

addons/lets_encrypt/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ <h1 class="title indent">
6868
</header>
6969
<hr class="divider">
7070
<p>Setup and manage a <a href="https://letsencrypt.org/">Let’s Encrypt</a> certificate. This will create a certificate on the first run and renew it if the certificate is expiring in the next 30 days.</p>
71+
<p class="note warning">
72+
This add-on need port 80/443 to verify the certificate request, please stop all add-ons they use also this ports, otherwise you can not start this add-on.
73+
</p>
7174
<div class="language-json highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
7275
</span><span class="nt">"email"</span><span class="p">:</span><span class="w"> </span><span class="s2">"example@example.com"</span><span class="p">,</span><span class="w">
7376
</span><span class="nt">"domains"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="s2">"example.com"</span><span class="p">,</span><span class="w"> </span><span class="s2">"mqtt.example.com"</span><span class="p">,</span><span class="w"> </span><span class="s2">"hass.example.com"</span><span class="p">]</span><span class="w">

addons/nginx_proxy/index.html

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
6+
<head>
7+
<meta charset="utf-8">
8+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9+
<title>Nginx SSL proxy - Home Assistant</title>
10+
<meta name="author" content="Home Assistant">
11+
<meta name="description" content="Nginx HomeAssistant SSL proxy">
12+
<meta name="viewport" content="width=device-width">
13+
<link rel="canonical" href="https://home-assistant.io/addons/nginx_proxy/">
14+
<meta property="fb:app_id" content="338291289691179">
15+
<meta property="og:title" content="Nginx SSL proxy">
16+
<meta property="og:site_name" content="Home Assistant">
17+
<meta property="og:url" content="https://home-assistant.io/addons/nginx_proxy/">
18+
<meta property="og:type" content="article">
19+
<meta property="og:description" content="Nginx HomeAssistant SSL proxy">
20+
<meta property="og:image" content="https://home-assistant.io/images/default-social.png">
21+
<meta name="twitter:card" content="summary_large_image">
22+
<meta name="twitter:site" content="@home_assistant">
23+
<meta name="twitter:title" content="Nginx SSL proxy">
24+
<meta name="twitter:description" content="Nginx HomeAssistant SSL proxy">
25+
<meta name="twitter:image" content="https://home-assistant.io/images/default-social.png">
26+
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
27+
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
28+
<link rel='shortcut icon' href='/images/favicon.ico' />
29+
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
30+
</head>
31+
<body >
32+
<header>
33+
<div class="grid-wrapper">
34+
<div class="grid">
35+
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
36+
<a href="/" class="site-title">
37+
<img width='40' src='/demo/favicon-192x192.png'>
38+
<span>Home Assistant</span>
39+
</a>
40+
</div>
41+
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
42+
<nav>
43+
<input type="checkbox" id="toggle">
44+
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
45+
<ul class="menu pull-right">
46+
<li><a href="/getting-started/">Getting started</a></li>
47+
<li><a href="/components/">Components</a></li>
48+
<li><a href="/docs/">Docs</a></li>
49+
<li><a href="/cookbook/">Examples</a></li>
50+
<li><a href="/developers/">Developers</a></li>
51+
<li><a href="/blog/">Blog</a></li>
52+
<li><a href="/help/">Need help?</a></li>
53+
</ul>
54+
</nav>
55+
</div>
56+
</div>
57+
</div>
58+
</header>
59+
<div class="grid-wrapper">
60+
<div class="grid grid-center">
61+
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
62+
<article class="page">
63+
<div class='edit-github'><a href='https://github.com/home-assistant/home-assistant.github.io/tree/current/source/_addons/nginx_proxy.markdown'>Edit this page on GitHub</a></div>
64+
<header>
65+
<h1 class="title indent">
66+
Nginx SSL Proxy
67+
</h1>
68+
</header>
69+
<hr class="divider">
70+
<p>Setup a SSL proxy with nginx and redirect port 80 to 443. Make sure you have generate certificate before you start this add-on.</p>
71+
<div class="language-json highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
72+
</span><span class="nt">"domain"</span><span class="p">:</span><span class="w"> </span><span class="s2">"home.example.com"</span><span class="w">
73+
</span><span class="p">}</span><span class="w">
74+
</span></code></pre>
75+
</div>
76+
<p>Configuration variables:</p>
77+
<ul>
78+
<li><strong>domain</strong> (<em>Required</em>): Domain they will proxy run with it.</li>
79+
</ul>
80+
</article>
81+
</div>
82+
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
83+
<div class="grid">
84+
<section class="aside-module grid__item one-whole lap-one-half">
85+
<div class='section'>
86+
<h1 class="title delta">Topics</h1>
87+
<ul class='divided sidebar-menu'>
88+
<li>
89+
<a href='/hassio/'>Hass.io </a>
90+
<ul>
91+
<li><a href='/hassio/installation/'>Installation </a></li>
92+
<li><a href='/addons/'>Available add-ons </a></li>
93+
<li><a href='/hassio/installing_third_party_addons/'>Installing third-party add-ons </a></li>
94+
<li><a href='/hassio/architecture/'>Architecture </a></li>
95+
</ul>
96+
</li>
97+
</ul>
98+
<ul class='divided sidebar-menu'>
99+
<li>
100+
<a href='/hassio/addon_development/'>Add-on Development </a>
101+
<ul>
102+
<li><a href='/hassio/addon_tutorial/'>Tutorial: Making your first add-on </a></li>
103+
<li><a href='/hassio/addon_config/'>Configuration </a></li>
104+
<li><a href='/hassio/addon_testing/'>Local Testing </a></li>
105+
<li><a href='/hassio/addon_publishing/'>Publishing </a></li>
106+
<li><a href='/hassio/addon_repository/'>Repositories </a></li>
107+
</ul>
108+
</li>
109+
<li><a href='/hassio/debugging/'>Debugging Hass.io </a></li>
110+
</ul>
111+
</div>
112+
</section>
113+
</div>
114+
</aside>
115+
</div>
116+
</div>
117+
<footer>
118+
<div class="grid-wrapper">
119+
<div class="grid">
120+
<div class="grid__item">
121+
<div class="copyright">
122+
<a rel="me" href='https://twitter.com/home_assistant'><i class="icon-twitter"></i></a>
123+
<a rel="me" href='https://facebook.com/homeassistantio'><i class="icon-facebook"></i></a>
124+
<a rel="me" href='https://plus.google.com/110560654828510104551'><i class="icon-google-plus"></i></a>
125+
<a rel="me" href='https://github.com/home-assistant/home-assistant'><i class="icon-github"></i></a>
126+
<div class="credit">
127+
Contact us at <a href='mailto:hello@home-assistant.io'>hello@home-assistant.io</a> (no support!).<br>
128+
Website powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>.<br />
129+
Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.
130+
</div>
131+
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">home-assistant.io</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.
132+
</div>
133+
</div>
134+
</div>
135+
</div>
136+
</footer>
137+
<script>
138+
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
139+
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
140+
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
141+
s.parentNode.insertBefore(g,s)}(document,'script'));
142+
</script>
143+
</body>
144+
</html>

atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Home Assistant]]></title>
55
<link href="https://home-assistant.io/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/announcements/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Announcements | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/announcements/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/community/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Community | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/community/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/device-tracking/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Device-Tracking | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/device-tracking/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/esp8266/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: ESP8266 | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/esp8266/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/how-to/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: How-To | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/how-to/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/ibeacons/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: iBeacons | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/ibeacons/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/internet-of-things/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Internet-of-Things | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/internet-of-things/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/iot-data/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: IoT-Data | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/iot-data/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/merchandise/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Merchandise | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/merchandise/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/micropython/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Micropython | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/micropython/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/mqtt/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: MQTT | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/mqtt/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/organisation/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Organisation | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/organisation/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/owntracks/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: OwnTracks | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/owntracks/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/presence-detection/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Presence-Detection | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/presence-detection/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/public-service-announcement/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Public-Service-Announcement | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/public-service-announcement/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/release-notes/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Release-Notes | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/release-notes/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/survey/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Survey | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/survey/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/talks/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Talks | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/talks/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/technology/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Technology | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/technology/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/user-stories/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: User-Stories | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/user-stories/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/video/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Video | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/video/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

blog/categories/website/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title><![CDATA[Category: Website | Home Assistant]]></title>
55
<link href="https://home-assistant.io/blog/categories/website/atom.xml" rel="self"/>
66
<link href="https://home-assistant.io/"/>
7-
<updated>2017-05-18T10:47:07+00:00</updated>
7+
<updated>2017-05-18T12:13:14+00:00</updated>
88
<id>https://home-assistant.io/</id>
99
<author>
1010
<name><![CDATA[Home Assistant]]></name>

0 commit comments

Comments
 (0)