Cheshire-Cat behind Apache Proxy #1017
Answered
by
leorsida
architectonio
asked this question in
Q&A
-
|
Hello together, I found how-tos about Caddy or Nginx, but unfortunately nothing that works with Apache. Any suggestion about? Thanks in advance to everybody |
Beta Was this translation helpful? Give feedback.
Answered by
leorsida
Jan 17, 2026
Replies: 1 comment 6 replies
-
|
Are you setting the env variables like explained in the docs? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you forgot to include the ws path on the right side of the rule:
ProxyPass / http://192.168.10.201:28830/ws/ upgrade=websocket
ProxyPassReverse / http://192.168.10.201:28830/ws/ upgrade=websocket
Below my working vhost on apache
RewriteEngine On
ProxyRequests Off
ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule /ws/(.*) "ws://192.168.2.103:1865/ws/$1" [P,L]