Fix typos in README (#2)

README file contains some typos and unnecessary whitespace. This commit
fixes that issue.
This commit is contained in:
Son Dang 2018-09-18 00:22:08 +07:00 committed by Denis Denisov
parent d381e5030d
commit 22a8815393
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) # max clients is also limited by the number of socket connections available on the system (~64k)
worker_connections 4000; 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; use epoll;
# accept as many connections as possible, may flood worker connections if set too low -- for testing environment # 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; access_log off;
# copies data between one FD and other from within the kernel # copies data between one FD and other from within the kernel
# faster then read() + write() # faster than read() + write()
sendfile on; 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; tcp_nopush on;
# don't buffer data sent, good for small data bursts in real time # 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 # request body is written into a temporary file
client_body_buffer_size 128k; 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; client_header_buffer_size 3m;
# maximum number and size of buffers for large headers to read from client request # maximum number and size of buffers for large headers to read from client request