Remove tcp_nodelay
The Nagle buffering algorithm is apparently that the best thing to enable by default. closes #28
This commit is contained in:
parent
7cae83a0cf
commit
5142e91ecf
|
@ -63,11 +63,6 @@ http {
|
||||||
# since TCP frames are filled up before being sent out. (adds TCP_CORK)
|
# since TCP frames are filled up before being sent out. (adds TCP_CORK)
|
||||||
tcp_nopush on;
|
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
|
# Compression
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue