代理服务返回HTTP 202时的反向代理

时间:2019-07-15 14:14:06

标签: nginx nginx-reverse-proxy

我正在尝试使用Nginx为Docker映像设置反向代理。我想反向代理此图像以在标题中添加内容以支持cors。它适用于所有呼叫,但返回HTTP 202(已接受)的呼叫。标题似乎没有发回

我更改了几个参数,但是我找不到最佳方法

这是我正在使用的nginx.conf

worker_processes 1;

events { worker_connections 1024; }

error_log /etc/nginx/error_log.log warn;

http {

    sendfile on;

    upstream docker-recognizetext {
        server recognizetext:5000;
    }

    server {
        listen 8080;

        location / {

          if ($request_method = OPTIONS) {
            add_header 'Access-Control-Max-Age' 1728000;
            add_header 'Content-Type' 'text/plain charset=UTF-8';
            add_header 'Content-Length' 0;
            return 200;
          }

          if ($request_method = 'POST') {
              add_header 'Access-Control-Allow-Origin' '*';
              add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
              add_header 'Access-Control-Allow-Headers' 'Operation-Location,DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
              add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
          }
          if ($request_method = 'GET') {
              add_header 'Access-Control-Allow-Origin' '*';
              add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
              add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
              add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
          }

          proxy_pass         http://docker-recognizetext;
          proxy_redirect     off;
          proxy_set_header   Host $host;
          proxy_set_header   X-Real-IP $remote_addr;
          proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_set_header   X-Forwarded-Host $server_name;
        }
    }
}

我的Nginx服务器侦听Localhost上的端口8080。 上游docker-recognizetext侦听端口5000

此docker图像有一个醒目的页面来查看呼叫。当我运行URL

http://localhost:8080/swagger/index.html

在Chrome上,我可以列出响应标题,并且有鳍

HTTP/1.1 200 OK
Server: nginx/1.17.1
Date: Mon, 15 Jul 2019 14:10:23 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, POST, OPTIONS
Access-Control-Allow-Headers: DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range
Access-Control-Expose-Headers: Content-Length,Content-Range

当我发布以下请求时(我删除了一些参数)

POST http://localhost:8080/vision/v2.0/recognizeText?mode=printed

respone标头为:

HTTP/1.1 202 Accepted
Server: nginx/1.17.1
Date: Mon, 15 Jul 2019 13:58:09 GMT
Content-Length: 0
Connection: keep-alive
Operation-Location: http://localhost/vision/v2.0/textOperations/24a63f9d-e272-4c84-a062-f405f6ec64e4

在其中调用Operation-Location值以检查作业的状态。调用此端点可以在响应头方面提供良好的结果。

我唯一的问题是调用返回202。在我看来Nginx需要特定的设置来路由该调用-但我无法弄清楚!

1 个答案:

答案 0 :(得分:0)

来自http://nginx.org/en/docs/http/ngx_http_headers_module.html

  

语法:add_header 名称 [always];
  默认值:
  内容:http, server, location, if in location

     

将指定的字段添加到   响应头,前提是响应代码等于200、201   (1.3.10),204、206、301、302、303、304、307(1.1.16、1.0.13)或308   (1.13.0)。参数值可以包含变量。

     

可能有多个add_header指令。这些指令是   当且仅当不存在时,才从上一级继承   在当前级别上定义的add_header指令。

     

如果指定了always参数(1.7.5),则标题字段为   不管响应代码是什么。