net::ERR_INCOMPLETE_CHUNKED_ENCODING nginx

后端 未结 8 1199
无人共我
无人共我 2020-12-15 17:38

I have 2 RoR web applications hosted on 2 different servers. For one particular page, the request is served from the second application. For rest of the pages, the request i

8条回答
  •  醉梦人生
    2020-12-15 18:29

    Bumped into this issue on AWS and found that adding a few proxy_buffer directives to the site config file fixed the issues:

    server {
        ...
    
        location / {
            ...
            proxy_buffers 8 1024k;  
            proxy_buffer_size 1024k;
        }
    }
    

提交回复
热议问题