From edcb3cd2710f4894830e56010a5ceae4394fede8 Mon Sep 17 00:00:00 2001 From: Ulrich Date: Mon, 28 Jan 2019 16:30:09 +0100 Subject: [PATCH] fix for apache2-errors. "client denied by server configuration" --- Apache.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Apache.md b/Apache.md index 3603ad7..2cb927c 100644 --- a/Apache.md +++ b/Apache.md @@ -42,6 +42,10 @@ Config at `/etc/apache2/sites-available/example.com.conf`: Include /etc/letsencrypt/options-ssl-apache.conf ServerSignature Off + + require all granted + + ProxyPassMatch "^/(sockjs\/.*\/websocket)$" "ws://127.0.0.1:3001/$1" ProxyPass "/" "http://127.0.0.1:3001/" ProxyPassReverse "/" "http://127.0.0.1:3001/"