annotate html/ngx_core_module.html @ 638:f5a8cf31a203 NGINX_1_1_3

nginx 1.1.3 *) Feature: the module ngx_http_mp4_module. *) Bugfix: in Linux AIO combined with open_file_cache. *) Bugfix: open_file_cache did not update file info on retest if file was not atomically changed. *) Bugfix: nginx could not be built on MacOSX 10.7.
author Igor Sysoev <http://sysoev.ru>
date Wed, 14 Sep 2011 00:00:00 +0400
parents 943566b4d82e
children eb208e0cf44d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
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>
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
2 user www www;
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
3 worker_processes 2;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
4
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
5 error_log /var/log/nginx-error.log info;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
6
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
7 events {
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
8 use kqueue;
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
9 worker_connections 2048;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
10 }
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
11
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
12 ...
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
13 </pre></blockquote></p><a name="directives"></a><center><h4>Directives</h4></center><hr><a name="daemon"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
14 <code>daemon <code>on</code> | <code>off</code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
15 <code>daemon on</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
16 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
17 Determines whether nginx should become a daemon.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
18 Mainly used during development.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
19 </p><hr><a name="env"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
20 <code>env <code><i>VAR</i></code>[=<code><i>VALUE</i></code>]</code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
21 <code>env TZ</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
22 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
23 Allows to limit a set of environment variables, change their values,
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
24 or create new environment variables, for the following cases:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
25 <ul><li>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
26 variable inheritance during a
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
27 <a href="control.html#upgrade">live upgrade</a>
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
28 of an executable file;
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
29 </li><li>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
30 use of variables by the
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
31 <a href="http/ngx_http_perl_module.html">http_perl</a>
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
32 module;
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
33 </li><li>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
34 use of variables by worker processes.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
35 Please bear in mind that controlling system libraries in this way
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
36 is not always possible as it is not uncommon for libraries to check
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
37 variables only during initialization, well before they can be set
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
38 using this directive.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
39 An exception from this is an above mentioned
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
40 <a href="control.html#upgrade">live upgrade</a>
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
41 of an executable file.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
42 </li></ul></p><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
43 The TZ variable is always inherited and made available to the
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
44 <a href="http/ngx_http_perl_module.html">http_perl</a>
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
45 module, unless configured explicitly.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
46 </p><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
47 Usage example:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
48 <blockquote><pre>
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
49 env MALLOC_OPTIONS;
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
50 env PERL5LIB=/data/site/modules;
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
51 env OPENSSL_ALLOW_PROXY_CERTS=1;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
52 </pre></blockquote></p><hr><a name="include"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
53 <code>include <code><i>file</i></code> | <code><i>mask</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
54 <strong>none</strong><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
55 <strong>any</strong><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
56 Includes another <code><i>file</i></code>, or files matching the
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
57 specified <code><i>mask</i></code>, into configuration.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
58 Included files should consist of
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
59 syntactically correct directives and blocks.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
60 </p><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
61 Usage example:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
62 <blockquote><pre>
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
63 include mime.types;
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
64 include vhosts/*.conf;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
65 </pre></blockquote></p><hr><a name="master_process"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
66 <code>master_process <code>on</code> | <code>off</code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
67 <code>master_process on</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
68 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
69 Determines whether worker processes are started.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
70 This directive is intended for nginx developers.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
71 </p><hr><a name="pid"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
72 <code>pid <code><i>file</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
73 <code>pid nginx.pid</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
74 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
75 Defines a <code><i>file</i></code> which will store the process ID of the main process.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
76 </p><hr><a name="ssl_engine"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
77 <code>ssl_engine <code><i>device</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
78 <strong>none</strong><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
79 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
80 Defines the name of the hardware SSL accelerator.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
81 </p><hr><a name="user"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
82 <code>user <code><i>user</i></code> [<code><i>group</i></code>]</code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
83 <code>user nobody nobody</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
84 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
85 Defines <code><i>user</i></code> and <code><i>group</i></code>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
86 credentials used by worker processes.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
87 If <code><i>group</i></code> is omitted, a group whose name equals
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
88 that of <code><i>user</i></code> is used.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
89 </p><hr><a name="timer_resolution"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
90 <code>timer_resolution <code><i>interval</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
91 <strong>none</strong><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
92 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
93 Reduces timer resolution in worker processes, thus reducing the
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
94 number of <code>gettimeofday()</code> system calls made.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
95 By default, <code>gettimeofday()</code> is called each time
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
96 on receiving a kernel event.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
97 With reduced resolution, <code>gettimeofday()</code> is only
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
98 called once per specified <code><i>interval</i></code>.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
99 </p><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
100 Example:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
101 <blockquote><pre>
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
102 timer_resolution 100ms;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
103 </pre></blockquote></p><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
104 An internal implementation of interval depends on the method used:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
105 <ul><li>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
106 an <code>EVFILT_TIMER</code> filter if <code>kqueue</code> is used;
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
107 </li><li><code>timer_create()</code> if <code>eventport</code> is used;
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
108 </li><li><code>setitimer()</code> otherwise.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
109 </li></ul></p><hr><a name="worker_rlimit_core"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
110 <code>worker_rlimit_core <code><i>size</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
111 <strong>none</strong><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
112 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
113 Changes the limit on the largest size of a core file
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
114 (<code>RLIMIT_CORE</code>) for worker processes.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
115 Used to increase the limit without restarting the main process.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
116 </p><hr><a name="worker_rlimit_nofile"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
117 <code>worker_rlimit_nofile <code><i>number</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
118 <strong>none</strong><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
119 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
120 Changes the limit on the maximum number of open files
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
121 (<code>RLIMIT_NOFILE</code>) for worker processes.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
122 Used to increase the limit without restarting the main process.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
123 </p><hr><a name="worker_priority"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
124 <code>worker_priority <code><i>number</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
125 <code>worker_priority 0</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
126 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
127 Defines a scheduling priority for worker processes like is
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
128 done by the <code>nice</code>: a negative
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
129 <code><i>number</i></code>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
130 means higher priority.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
131 Allowed range normally varies from -20 to 20.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
132 </p><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
133 Example:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
134 <blockquote><pre>
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
135 worker_priority -10;
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
136 </pre></blockquote></p><hr><a name="worker_processes"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
137 <code>worker_processes <code><i>number</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
138 <code>worker_processes 1</code><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
139 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
140 Defines the number of worker processes.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
141 </p><hr><a name="working_directory"></a><strong>syntax</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
142 <code>working_directory <code><i>directory</i></code></code><br><strong>default</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
143 <strong>none</strong><br><strong>context</strong>:
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
144 <code>main</code><br><p>
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
145 Defines a current working directory for a worker process.
638
f5a8cf31a203 nginx 1.1.3
Igor Sysoev <http://sysoev.ru>
parents: 636
diff changeset
146 It is primarily used when writing a core-file, in which case
636
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
147 a working process should have write permission for the
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
148 specified directory.
943566b4d82e nginx 1.1.2
Igor Sysoev <http://sysoev.ru>
parents:
diff changeset
149 </p></body></html>