From cc6101506273d8e5d63441c0dd6c3e1f4bf994b6 Mon Sep 17 00:00:00 2001 From: "Mr.Generation" Date: Thu, 12 Apr 2018 12:20:32 +0200 Subject: [PATCH] Addition to zammad_ssl.conf Added commented-out Proxy-Pass-settings that make the options work on openSuse and maybe other systems too. My apache 2.4 did not proxy without " "retry=1 acque=3000 timeout=600 keepalive=On" " and just threw 404. Might need testing if this is new in general. I know Ubuntu systems that work the same way. --- contrib/apache2/zammad_ssl.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/apache2/zammad_ssl.conf b/contrib/apache2/zammad_ssl.conf index ac878b6bb..b9c23f8b9 100644 --- a/contrib/apache2/zammad_ssl.conf +++ b/contrib/apache2/zammad_ssl.conf @@ -46,6 +46,12 @@ ProxyPass /robots.txt ! ProxyPass /ws ws://localhost:6042/ ProxyPass / http://localhost:3000/ + + # Use settings below if proxying does not work and you receive HTTP-Errror 404 + # if you use the settings below, make sure to comment out the above two options + # This may not apply to all systems, applies to openSuse + #ProxyPass /ws ws://localhost:6042/ "retry=1 acque=3000 timeout=600 keepalive=On" + #ProxyPass / http://localhost:3000/ "retry=1 acque=3000 timeout=600 keepalive=On" DocumentRoot "/opt/zammad/public"