Remove tcp_nodelay

The Nagle buffering algorithm is apparently that the best thing
to enable by default.

closes #28
This commit is contained in:
AD7six 2014-07-28 13:52:39 +00:00
parent 7cae83a0cf
commit 5142e91ecf
1 changed files with 0 additions and 5 deletions

View File

@ -63,11 +63,6 @@ http {
# since TCP frames are filled up before being sent out. (adds TCP_CORK)
tcp_nopush on;
# Tell Nginx to enable the Nagle buffering algorithm for TCP packets, which
# collates several smaller packets together into one larger packet, thus saving
# bandwidth at the cost of a nearly imperceptible increase to latency. (removes TCP_NODELAY)
tcp_nodelay off;
# Compression