From 76f99d193ff1deceedc840e696e1b066b42e76b0 Mon Sep 17 00:00:00 2001 From: Allen Webb Date: Wed, 8 Jan 2025 10:13:00 -0600 Subject: [PATCH] docs/apache.md: Add websocket proxy After 0.5 websocket support is required so update the proxy instructions to include websockets. Issue #8074#issuecomment-2562017399 --- docs/apache.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/apache.md b/docs/apache.md index ebbcc17f4..1bd920593 100644 --- a/docs/apache.md +++ b/docs/apache.md @@ -16,6 +16,9 @@ For the UI configuration, you can set up the Apache VirtualHost as follows: ProxyPass / http://server.com:3000/ nocanon ProxyPassReverse / http://server.com:3000/ + # Needed after 0.5 + ProxyPass / ws://server.com:3000/ nocanon + ProxyPassReverse / ws://server.com:3000/ ``` @@ -32,6 +35,9 @@ Enable the site first before you can request SSL: ProxyPass / http://server.com:3000/ nocanon ProxyPassReverse / http://server.com:3000/ + # Needed after 0.5 + ProxyPass / ws://server.com:3000/ nocanon + ProxyPassReverse / ws://server.com:3000/ SSLEngine on SSLCertificateFile /etc/ssl/virtualmin/170514456861234/ssl.cert