Skip to content

Commit

Permalink
fix: nginx config workers (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Feb 23, 2023
1 parent 682a435 commit fe038a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ daemon off;
user www-data www-data;
error_log /dev/stdout info;

worker_processes auto;
worker_rlimit_nofile 50000;

events {
worker_connections 2048;
worker_processes auto;
worker_rlimit_nofile 50000;
}

http {
Expand Down

0 comments on commit fe038a5

Please sign in to comment.