diff --git a/atom.xml b/atom.xml index 1ddc88cad5..28aecc3b3f 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
To be able to access to your home assistant instance by using https://home.example.org, add to following file into /etc/httpd/conf/extra/hass.conf
<VirtualHost *:443>
+<VirtualHost *:443>
ProxyPreserveHost On
ProxyRequests Off
ServerName home.example.org
@@ -114,13 +114,15 @@ Your home assistant is correctly working on this web server and available at loc
ProxyPassReverse / http://localhost:8123/
</VirtualHost>
+
and make sure that this file is read by apache’s main configiuration file /etc/httpd/conf/httpd.conf
-...
+...
Include conf/extra/hass.conf
...
+
If you don’t want HTTPS, you can change <VirtualHost *:443>
to <VirtualHost *:80>
or better consider redirecting all HTTP to HTTPS.
@@ -149,7 +151,7 @@ The configuration file for this home assistant is available in /etc/httpd/conf/extra/hass.conf
-<VirtualHost *:443>
+<VirtualHost *:443>
ProxyPreserveHost On
ProxyRequests Off
ServerName countryside.example.org
@@ -157,12 +159,13 @@ The configuration file for this home assistant is available in HTTP to HTTPS redirection
Add to your /etc/httpd/conf/extra/hass.conf
-<VirtualHost *:80>
+<VirtualHost *:80>
ServerName example.org
ServerSignature Off
@@ -171,6 +174,7 @@ The configuration file for this home assistant is available in