我运行 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。有人可以提出解决方案吗?