6

我想将带有 nginx 实例的传入请求代理到一个小的 java 后端应用程序。这个想法是我希望将每个原始请求的 uri 作为请求参数包含在内,例如:

location / {
            proxy_pass http://localhost:9000?url=$request_uri;
        }

但它不起作用

4

1 回答 1

8
location / {
            proxy_pass http://localhost:9000$request_uri;
        }

@request_uri等于从客户端接收到的原始请求URI,包括参数。

这篇$request_uri文章的内容是/questions/16188521/how-do-i-include-the-original-url-as-a-request-parameter-when-proxying

http://wiki.nginx.org/HttpCoreModule#.24request_uri

于 2013-04-24T09:43:55.937 回答