From 258348b77c5b14bd003d7fe3bee214e81a7e20cc Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 31 Mar 2017 19:41:46 +0200 Subject: [PATCH] Update apache.markdown (#2348) Added a note regarding a workaround for HTTP 504 Gateway Timeout error messages. --- source/_docs/ecosystem/apache.markdown | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/_docs/ecosystem/apache.markdown b/source/_docs/ecosystem/apache.markdown index e526cc3f79e..94d0a1cf20b 100644 --- a/source/_docs/ecosystem/apache.markdown +++ b/source/_docs/ecosystem/apache.markdown @@ -53,6 +53,20 @@ Include conf/extra/hass.conf If you don't want HTTPS, you can change `` to `` or better consider redirecting all HTTP to HTTPS. +

+In case you are getting occasional HTTP 504 error messages ("Gateway Timeout") when accessing the Web UI through your proxy, try adding disablereuse=on to both ProxyPass directives: + +```text + + [...] + ProxyPass /api/websocket ws://localhost:8123/api/websocket disablereuse=on + [...] + ProxyPass / http://localhost:8123/ disablereuse=on + [...] + +``` +

+ #### {% linkable_title Multiple Instance %} You already have Home Assistant running on http://localhost:8123 and available at home.example.org as describe before. The configuration file for this Home Assistant is available in `/home/alice/.homeassistant/configuration.yaml`