(as long you get it in the right order)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1880719 13f79535-47bb-0310-9956-
ffa450edef68
ProxyPass "/ws2/" "ws://echo.websocket.org/"
ProxyPass "/wss2/" "wss://echo.websocket.org/"
</highlight>
+
+<p>Proxying both HTTP and websockets at the same time can be done by specifying the websockets
+<directive type="ProxyPass" module="mod_proxy">ProxyPass</directive> directive before the
+ HTTP directive:</p>
+ <highlight language="config">
+ProxyPass "/myApp/" "ws://backend.example.com/
+ProxyPass "/myApp/" "http://backend.example.com/
+ </highlight>
+
<p>Load balancing for multiple backends can be achieved using <module>mod_proxy_balancer</module>.</p>