Answers for "apache ws proxy"

1

apache ws proxy

<VirtualHost *:443>
        ProxyPreserveHost On
        ServerName www.mysite.com
        ProxyPass / http://localhost:3333/
        ProxyPassReverse / http://localhost:3333/

RewriteEngine On
RewriteCond %{HTTP:Upgrade} websocket    [NC]
RewriteRule /(.*)           ws://localhost:3333/$1 [P,L]

...
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language