-
-
Save n4ss1m/b43193eb398ec2c7c9a73276e949680c to your computer and use it in GitHub Desktop.
High performance tuning of Nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## From a post on the ML, apropos this: | |
## http://lowlatencyweb.wordpress.com/2012/03/20/500000-requestssec-modern-http-servers-are-fast. | |
## For sysctl.conf | |
net.ipv4.tcp_slow_start_after_idle = 0 | |
echo "1768 64512" > /proc/sys/net/ipv4/ip_local_port_range | |
echo 1 > /proc/sys/net/ipv4/tcp_tw_recycle | |
echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse | |
echo 1 > /proc/sys/net/ipv4/tcp_timestamps | |
echo 10 > /proc/sys/net/ipv4/tcp_fin_timeout | |
echo 65536 > /proc/sys/net/core/somaxconn | |
echo 65536 > /proc/sys/net/ipv4/tcp_max_syn_backlog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment