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
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; } }