Apache httpd ProxyPass基于某些东西

时间:2017-05-17 15:22:22

标签: apache websocket proxy proxypass

我让Tomcat监听localhost和端口8181.我需要通过各种代理模块(http和ws)对其进行代理请求,但需要相同的url路径。例如:

<If "%{HTTP:Upgrade} == 'WebSocket'">
    ProxyPass ws://localhost:8181/
</If>
<If "%{HTTP:Upgrade} != 'WebSocket'">
    ProxyPass http://localhost:8181/
</If>

如果ProxyPass可以放在“if ... / if”表达式中,那么这个片段对我来说是完美的,不幸的是它不允许。

是否可以制作类似于Apache 2.2 / 2.4的内容?

0 个答案:

没有答案