Thursday, January 19, 2023

Nginx tuning to be able to handle 50000 requests

 

Nginx Tuning untuk menghandle 50000 requests

1.      Set beberapa kernel parameter berikut (vi /etc/sysctl.conf)

fs.file-max = 50000

net.ipv4.tcp_fin_timeout = 15

 

2.      Set Soft dan Hard Limit untuk user nginx (vi /etc/security/limits.conf)

nginx       soft    nofile   10000

nginx       hard    nofile   50000

 

3.      Set Worker Process menjadi 10 dan worker rlimit menjadi 50000 (vim /etc/nginx/nginx.conf)




No comments: