http头-nginx将文件类型传递到后端服务器



我正在尝试设置nginx来处理文件上传,并在完成后将文件信息传递到后端服务器。我在https://coderwall.com/p/swgfvw它展示了如何做到这一点,并且我能够看到一个文件被上传到/tmp目录。但是,我也想将文件名和类型(Content-Disposition和Content-type)传递给后端服务器。

我尝试捕获在http服务器端口接收到的内容,并看到下面的

POST /upload HTTP/1.1
User-Agent: curl/7.32.0
Host: MyHostName
Accept: */*
Content-Length: 4431
Expect: 100-continue
Content-Type: multipart/form-data; boundary=------------------------6060af4f937c14c9
--------------------------6060af4f937c14c9
Content-Disposition: form-data; name="filedata"; filename="sessions.txt"
Content-Type: text/plain

然后是数据。

我上传的nginx位置块是

        location /upload {
                limit_except POST       { deny all; }
                client_body_temp_path           /tmp/;
                client_body_in_file_only        on;
                client_body_buffer_size         128K;
                client_max_body_size            100M;
                proxy_redirect                  off;
                proxy_set_header                X-FILE $request_body_file;
                proxy_set_header                X-Forwared-For  $proxy_add_x_forwarded_for;
                proxy_set_header                Host    $http_host;
                proxy_set_header                X-NginX-Proxy   true;
                proxy_set_header                Connection "";
                proxy_pass_request_headers      on;
                proxy_set_body                  off;
                proxy_http_version              1.1;
                proxy_pass                      http://my_backend;
        }

有了这个,我可以在我的后端传递并接收以下内容,

'content-type': 'multipart/form-data; boundary=------------------------6060af4f937c14c9'
'x-file': '/tmp/0000000001'

但我真的很想知道如何才能得到

Content-Disposition: form-data; name="filedata"; filename="sessions.txt"
Content-Type: text/plain

到我的后端。如有任何帮助,我们将不胜感激。

希望这个问题可以吗?(尝试过超级用户,但似乎没有太多活动)

如果头被忽略,请尝试

proxy_pass_header    Content-Disposition;

或直接通过

proxy_set_header     Content-Disposition $http_content_disposition;

在nginx中,自定义标头中的下划线被默默忽略,这一选项可能有助于

undercores_in_headers打开;

相关内容

  • 没有找到相关文章

最新更新