From ecf83ef9556d9aa6598423c9115a686c370418d7 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Tue, 6 Sep 2011 13:43:04 +0000 Subject: Regenerate after previous commit. --- docs/html/ngx_core_module.html | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'docs/html/ngx_core_module.html') diff --git a/docs/html/ngx_core_module.html b/docs/html/ngx_core_module.html index bccee53d1..1a4a89f73 100644 --- a/docs/html/ngx_core_module.html +++ b/docs/html/ngx_core_module.html @@ -1,12 +1,12 @@ Core Module

Example Configuration

-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;
 }
 
 ...
@@ -33,7 +33,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 @@ -46,9 +46,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;
     


    syntax: include file | mask
    default: none
    context: @@ -60,8 +60,8 @@ syntactically correct directives and blocks.

    Usage example:

    -include  mime.types;
    -include  vhosts/*.conf;
    +include mime.types;
    +include vhosts/*.conf;
     


    syntax: master_process on | off
    default: master_process on
    context: @@ -99,7 +99,7 @@ called once per specified interval.

    Example:

    -timer_resolution   100ms;
    +timer_resolution 100ms;
     

    An internal implementation of interval depends on the method used:

    • @@ -132,7 +132,7 @@ Allowed range normally varies from -20 to 20.

      Example:

      -worker_priority  -10;
      +worker_priority -10;
       


      syntax: worker_processes number
      default: worker_processes 1
      context: @@ -143,7 +143,7 @@ Defines the number of worker processes. none
      context: main

      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