8 lines
195 B
Plaintext
8 lines
195 B
Plaintext
# Speed up file transfer by using sendfile().
|
|
sendfile on;
|
|
|
|
# Don't send partial frames, which increases throughput.
|
|
tcp_nopush on;
|
|
|
|
# Don't wait to send data in keep-alive state.
|
|
tcp_nodelay on; |