2017-03-02 65 views
2

下面是我使用的nginx conf(nginx是一个docker容器) - Nginx被用作所有后端api服务器的代理服务器。当我尝试上传文件时,如果尺寸大于1 MB,则会出现错误。尝试了所有可能的解决方案,但无法解决。任何帮助都会有用。nginx代理服务器无法上传大于1 MB的文件

server { 
    listen 80; 
    server_name abcd.dev; 
    #rewrite ^/(.*)/$ /$1 permanent; 
    charset utf-8; 
    keepalive_timeout 300s; 
    gzip on; 
    gzip_http_version 1.1; 
    gzip_vary on; 
    gzip_comp_level 6; 
    gzip_proxied any; 
    gzip_buffers 16 8k; 
    gzip_disable "MSIE [1-6]\.(?!.*SV1)"; 

    client_body_in_file_only clean; 
    client_body_buffer_size 10M; 
    client_max_body_size 10M; 

    sendfile on; 
    send_timeout 300s; 

    proxy_buffering off; 
    proxy_request_buffering off; 
    proxy_buffer_size 10M; 
    proxy_buffers 32 4m; 
    proxy_busy_buffers_size 10m; 
    proxy_max_temp_file_size 1024m; 
    proxy_temp_file_write_size 10m; 

    proxy_connect_timeout 300s; 
    proxy_read_timeout 300s; 
    proxy_send_timeout 300s; 


    proxy_set_header HOST $host; 

    #X-Forwarded-Proto header gives the proxied server information about the schema of the original client request (whether it was an http or an https request). 
    proxy_set_header X-Forwarded-Proto $scheme; 

    #The X-Real-IP is set to the IP address of the client so that the proxy can correctly make decisions or log based on this information. 
    proxy_set_header X-Real-IP $remote_addr; 

    #The X-Forwarded-For header is a list containing the IP addresses of every server the client has been proxied through up to this point. 
    #In the example above, we set this to the $proxy_add_x_forwarded_for variable. 
    #This variable takes the value of the original X-Forwarded-For header retrieved from the client and adds the Nginx server's IP address to the end. 
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 

    error_page 404 /custom_404.html; 
     location = /custom_404.html { 
       root /usr/share/nginx/html; 
       internal; 
     } 

    error_page 500 502 503 504 /custom_50x.html; 
     location = /custom_50x.html { 
       root /usr/share/nginx/html; 
       internal; 
    } 

    location/{ 
     location ~ ^/(uploads/|vendor/|images/|img/|javascript/|js/|css/|stylesheets/|flash/|media/|static/|robots.txt|humans.txt|favicon.ico) { 
      proxy_pass http://ui-service; 
     } 
     if ($domain) { 
     set $args $args&nethumUrl=$domain; 
     proxy_pass http://ui-service$uri$is_args$args; 
     } 
     proxy_pass http://ui-service$uri$is_args$args; 

    } 
........... 
} 

我可以上传小于1MB的文件,但上传的文件不大。获取以下错误 -

error 2017/03/02 06:52:37 [error] 38#38: *89 recv() failed (104: Connection reset by peer) while reading response header from upstream 
+0

你可以设置位置块内的配置'client_max_body_size' PARAM&再试一次? –

+0

错误消息表示连接被您的后端重置。你能从你的java后端显示日志吗? –

+1

请注意,尽管代理服务器默认使用http/1.0。你在下面说,上传到你的Java应用程序直接工作正常 - 让我们尝试在你的测试客户端明确使用http/1.0或使用proxy_http_version 1.1来确保你的测试是公平的。是的,从你的Java应用程序的任何日志将是有益的,否则我们只能猜测发生了什么 – ffeast

回答

0

什么是您的php.ini设置upload_max_filesize?还要尝试在您的http指令(位于/etc/nginx/nginx.conf)中以及location指令中添加client_max_body_size 10M;

+0

我不使用PHP。它是一个向Java服务器发送请求的代理服务器,我也有一个10M的限制。如果我直接上传到我的Java服务器,它工作正常。 – Ananda

0

错误消息表明连接被后端(Java服务器)关闭。检查它日志找出问题来源。

+0

路径是nginx-> node-proxy-> java app – Ananda

+0

@Ananda你可以显示node-proxy和java app的日志吗?看起来问题的根源在于其中之一。 –

1

我有一种问题。这是通过微调下一个(后面的nginx)web服务器解决的。然而,这里是http节的一些设置,可以帮助

default_type application/octet-stream; 
sendfile  on; 
keepalive_timeout 300; 
client_max_body_size 100m; 
gzip on; 
相关问题