From fbbde8871eb1b6f0d5e892d915c9c9b72deb506b Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Tue, 6 Sep 2011 13:42:40 +0000 Subject: Finished initial translation of the Core and HTTP Core modules. --- docs/xml/ngx_core_module.xml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'docs/xml/ngx_core_module.xml') diff --git a/docs/xml/ngx_core_module.xml b/docs/xml/ngx_core_module.xml index 065d1f271..2afc3172d 100644 --- a/docs/xml/ngx_core_module.xml +++ b/docs/xml/ngx_core_module.xml @@ -8,14 +8,14 @@ -user www www; -worker_processes 2; +user www www; +worker_processes 2; -error_log /var/log/nginx-error.log info; +error_log /var/log/nginx-error.log info; events { - use kqueue; - worker_connections 2048; + use kqueue; + worker_connections 2048; } ... @@ -65,7 +65,7 @@ module; use of variables by worker processes. Please bear in mind that controlling system libraries in this way -isn't always possible as it's not uncommon for libraries to check +is not always possible as it is not uncommon for libraries to check variables only during initialization, well before they can be set using this directive. An exception from this is an above mentioned @@ -85,9 +85,9 @@ module, unless configured explicitly. Usage example: -env MALLOC_OPTIONS; -env PERL5LIB=/data/site/modules; -env OPENSSL_ALLOW_PROXY_CERTS=1; +env MALLOC_OPTIONS; +env PERL5LIB=/data/site/modules; +env OPENSSL_ALLOW_PROXY_CERTS=1; @@ -108,8 +108,8 @@ syntactically correct directives and blocks. Usage example: -include mime.types; -include vhosts/*.conf; +include mime.types; +include vhosts/*.conf; @@ -185,7 +185,7 @@ called once per specified interval. Example: -timer_resolution 100ms; +timer_resolution 100ms; @@ -194,11 +194,11 @@ An internal implementation of interval depends on the method used: -an EVFILT_TIMER filter if kqueue is used; +an EVFILT_TIMER filter if kqueue is used; -timer_create if eventport is used; +timer_create if eventport is used; @@ -255,7 +255,7 @@ Allowed range normally varies from -20 to 20. Example: -worker_priority -10; +worker_priority -10; @@ -281,7 +281,7 @@ Defines the number of worker processes. Defines a current working directory for a worker process. -It's primarily used for writing a core-file, in which case +It is primarily used when writing a core-file, in which case a working process should have write permission for the specified directory. -- cgit