Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在设置一个运行 Nginx、Apache 2 和 MySQL 的 3 节点 Web 服务器集群。
问题是这样的。在我对 Web 服务器 2 - 3 的重写规则中,我想将所有 POST 流量定向到 Web 服务器 1(如果可能,在专用网络上)。所有服务器都位于负载均衡器后面。
那么我需要在 conf 文件中添加什么,以便 vhost 将所有流量重定向到 Web 服务器 1?
谢谢
if ($request_method = POST) { proxy_pass http://server1; }