By dgiulev
What can I do about it?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @dgiulev,
When experiencing the mentioned issue, you most probably have something very similar in your Nginx Configuration file :
server {
listen 80;
server_name host;
location / {
proxy_pass http://upstream;
...
}
}
To resolve this issue, we need to increase the proxy buffers that Nginx uses.
Before Nginx sends a response back to your visitor, it will buffer the request it had to make from its upstream. However, there are limited buffers available to buffer such a response.
To resolve this issue, you’ll need to add proxy_buffer_size configurations to your location block.
Your location block for proxy_pass should look something like this
location / {
proxy_pass http://upstream;
...
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
}
The above should help you fix the error you are experiencing
Regards, KDSys
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.