comparison html/ngx_core_module.html @ 640:eb208e0cf44d NGINX_1_1_4

nginx 1.1.4 *) Feature: the ngx_http_upstream_keepalive module. *) Feature: the "proxy_http_version" directive. *) Feature: the "fastcgi_keep_conn" directive. *) Feature: the "worker_aio_requests" directive. *) Bugfix: if nginx was built --with-file-aio it could not be run on Linux kernel which did not support AIO. *) Bugfix: in Linux AIO error processing. Thanks to Hagai Avrahami. *) Bugfix: reduced memory consumption for long-lived requests. *) Bugfix: the module ngx_http_mp4_module did not support 64-bit MP4 "co64" atom.
author Igor Sysoev <http://sysoev.ru>
date Tue, 20 Sep 2011 00:00:00 +0400
parents f5a8cf31a203
children
comparison
equal deleted inserted replaced
639:b516b4e38bc9 640:eb208e0cf44d
1 <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Core Module</title></head><body><a name="example"></a><center><h4>Example Configuration</h4></center><p><blockquote><pre> 1 <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Core Module</title></head><body><center><h3>Core Module</h3></center><a name="example"></a><center><h4>Example Configuration</h4></center><p><blockquote><pre>
2 user www www; 2 user www www;
3 worker_processes 2; 3 worker_processes 2;
4 4
5 error_log /var/log/nginx-error.log info; 5 error_log /var/log/nginx-error.log info;
6 6
25 <ul><li> 25 <ul><li>
26 variable inheritance during a 26 variable inheritance during a
27 <a href="control.html#upgrade">live upgrade</a> 27 <a href="control.html#upgrade">live upgrade</a>
28 of an executable file; 28 of an executable file;
29 </li><li> 29 </li><li>
30 use of variables by the 30 use of variables by the module
31 <a href="http/ngx_http_perl_module.html">http_perl</a> 31 <a href="http/ngx_http_perl_module.html">ngx_http_perl_module</a>;
32 module;
33 </li><li> 32 </li><li>
34 use of variables by worker processes. 33 use of variables by worker processes.
35 Please bear in mind that controlling system libraries in this way 34 Please bear in mind that controlling system libraries in this way
36 is not always possible as it is not uncommon for libraries to check 35 is not always possible as it is not uncommon for libraries to check
37 variables only during initialization, well before they can be set 36 variables only during initialization, well before they can be set
38 using this directive. 37 using this directive.
39 An exception from this is an above mentioned 38 An exception from this is an above mentioned
40 <a href="control.html#upgrade">live upgrade</a> 39 <a href="control.html#upgrade">live upgrade</a>
41 of an executable file. 40 of an executable file.
42 </li></ul></p><p> 41 </li></ul></p><p>
43 The TZ variable is always inherited and made available to the 42 The TZ variable is always inherited and made available to the module
44 <a href="http/ngx_http_perl_module.html">http_perl</a> 43 <a href="http/ngx_http_perl_module.html">ngx_http_perl_module</a>,
45 module, unless configured explicitly. 44 unless configured explicitly.
46 </p><p> 45 </p><p>
47 Usage example: 46 Usage example:
48 <blockquote><pre> 47 <blockquote><pre>
49 env MALLOC_OPTIONS; 48 env MALLOC_OPTIONS;
50 env PERL5LIB=/data/site/modules; 49 env PERL5LIB=/data/site/modules;