From eec9e77f67db5e8d9075f29b3413e65d713d5b2e Mon Sep 17 00:00:00 2001 From: logwang Date: Thu, 31 Aug 2017 17:41:27 +0800 Subject: [PATCH] Update nginx doc --- doc/F-Stack_Nginx_APP_Guide.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/F-Stack_Nginx_APP_Guide.md b/doc/F-Stack_Nginx_APP_Guide.md index 8c6b89e2..12a50086 100644 --- a/doc/F-Stack_Nginx_APP_Guide.md +++ b/doc/F-Stack_Nginx_APP_Guide.md @@ -60,14 +60,14 @@ Note that: ``` user root; # root account is necessary. fstack_conf f-stack.conf; # path of f-stack configuration file, default: $NGX_PREFIX/conf/f-stack.conf. - worker_processes 1; # should be equal to the lcore count of `dpdk.lcore_mask` in f-stack.conf. + worker_processes 1; # should be equal to the lcore count of `dpdk.lcore_mask` in f-stack.conf. - events { - worker_connections 102400; # increase - use kqueue; # use kqueue - } + events { + worker_connections 102400; # increase + use kqueue; # use kqueue + } - sendfile off; # sendfile off + sendfile off; # sendfile off ``` ## Nginx compiling