Fix typos in README

README file contains some typos and unnecessary whitespace. This commit
fixes that issue.
This commit is contained in:
Son Dang 2018-09-17 23:23:19 +07:00
parent d381e5030d
commit e7ca3d2e74
1 changed files with 10 additions and 10 deletions

View File

@ -38,7 +38,7 @@ events {
# max clients is also limited by the number of socket connections available on the system (~64k)
worker_connections 4000;
# optmized to serve many clients with each thread, essential for linux -- for testing environment
# optimized to serve many clients with each thread, essential for linux -- for testing environment
use epoll;
# accept as many connections as possible, may flood worker connections if set too low -- for testing environment
@ -57,10 +57,10 @@ http {
access_log off;
# copies data between one FD and other from within the kernel
# faster then read() + write()
# faster than read() + write()
sendfile on;
# send headers in one peace, its better then sending them one by one
# send headers in one piece, it is better than sending them one by one
tcp_nopush on;
# don't buffer data sent, good for small data bursts in real time
@ -133,7 +133,7 @@ server {
# request body is written into a temporary file
client_body_buffer_size 128k;
# headerbuffer size for the request header from client -- for testing environment
# buffer size for reading client request header -- for testing environment
client_header_buffer_size 3m;
# maximum number and size of buffers for large headers to read from client request