DEV Community

DevOpsCloudCloud
DevOpsCloudCloud

Posted on

[Plobem] nginx: worker_connections are not enough

When I work in company I see some error in nginx and show error in this picure.

Image description

and the my frontend can not load image in browser.

How to solve it

I increase worker_connection from 1024 to 4096 and try restart nginx

events {
worker_connections 4096;
}

Top comments (0)