Davi, 2.4.4 does not support WSS, so this isn't likely to work at all. If that is a distro package with backports, it must be an ancient EOL version, as I'm not aware of any distro still shipping 2.4.4.
It would also be useful to see the output from apachectl -M On Thu, 8 Sept 2022 at 13:00, Davi Baldin Tavares <d...@anext.com.br> wrote: > Hi team, > > We are using httpd 2.4.4. This server has proxy reverse configured to more > than 70 sites. While we enable a new proxy to a websocket site, other sites > where running fine start getting intermittent erros 403 and 404. > Imediatley, if we remove the new site and reload configuration, everything > start working normally aging. The proxied websocket site always run fine. > > We've tried different RewriteRule without any positive effect. > > Do you have any advise? Any known issue regarding multiple virtual hosts > and websockets? > > Thanks, > > Davi > > -------------------- Configuration of proxied websocket site > -------------------- > > <virtualHost *:443> > ServerAdmin ser...@domain.com > ServerName myapp.domain.com > ServerAlias myapp.domain2.com > ErrorLog /var/log/error.log > CustomLog /var/log/access.log > > <IfModule mod_ssl.c> > SSLEngine on > SSLCertificateFile certs/cert.crt > SSLCertificateKeyFile certs/key.key > SSLCertificateChainFile certs/ca.crt > </IfModule> > > RewriteEngine On > RewriteCond %{HTTP:Upgrade} websocket [NC] > RewriteRule /(.*) ws://127.0.0.1:3000/$1 [P,L] > RewriteRule /(.*) http://127.0.0.1:3000/$1 [P,L] > > ProxyPass / http://127.0.0.1:3000/ retry=1 > ProxyPassReverse / http://172.0.0.1:3000/ > ProxyRequests off > > </Virtualhost> > >