1

我运行 NGINX 服务器版本 1.2.6。我想将某个位置的所有 HTTP POST 请求反向代理到 IIS。但是,除了 POST 之外的所有其他请求都应该从 Nginx 提供,包括相同的位置:

location ~ \.aspx {
    if ($request_method = "POST") {
       #reverse proxy to the IIS
    }
    #if it's not post request
    try_files $uri =404;
}

问题是当我收到 POST 请求时,nginx 得到 404。有人可以提出解决方案吗?

4

1 回答 1

0

请参阅 http://nginx.org/en/docs/http/ngx_http_core_module.html limit_except 应该可以帮助您

于 2014-01-02T23:33:58.117 回答