标签: nginx forward
某些服务使用JSON数据调用我的服务器: POST http://example.com/controller/method
POST http://example.com/controller/method
我需要将相同的JSON数据发送到我的VPS上的另一台主机: POST http://staging.example.com/controller/method
POST http://staging.example.com/controller/method
现在我正在使用CURL将请求从生产发送到暂存。我认为这是个坏主意,但有效。
那么,是否可以将nginx配置为将特定请求转发到另一个站点?