tevkar

Results 2 comments of tevkar

For more recent versions of Apache: Replace `AddOutputFilterByType SUBSTITUTE text/html ` By ``` FilterDeclare MYFILTER FilterProvider MYFILTER SUBSTITUTE "%{Content_Type} = 'text/html'" FilterChain MYFILTER ```

**Yet another working example as a virtual host:** ``` ServerName ProxyPass / http://:8888/ ProxyPassReverse / http://:8888/ RewriteEngine On RewriteCond %{HTTP:Upgrade} websocket [NC] RewriteCond %{HTTP:Connection} upgrade [NC] RewriteRule ^/?(.*) "ws://:8888/$1" [P,L]...