comparison xml/en/docs/ngx_core_module.xml @ 82:89c31b453d40

Sorted directives alphabetically.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 13 Oct 2011 07:57:44 +0000
parents 6108fd3217e7
children a10bc0cb0a6a
comparison
equal deleted inserted replaced
81:5a2dcd623666 82:89c31b453d40
152 </para> 152 </para>
153 153
154 </directive> 154 </directive>
155 155
156 156
157 <directive name="user">
158 <syntax>user <argument>user</argument> [<argument>group</argument>]</syntax>
159 <default>user nobody nobody</default>
160 <context>main</context>
161
162 <para>
163 Defines <argument>user</argument> and <argument>group</argument>
164 credentials used by worker processes.
165 If <argument>group</argument> is omitted, a group whose name equals
166 that of <argument>user</argument> is used.
167 </para>
168
169 </directive>
170
171
172 <directive name="timer_resolution"> 157 <directive name="timer_resolution">
173 <syntax>timer_resolution <argument>interval</argument></syntax> 158 <syntax>timer_resolution <argument>interval</argument></syntax>
174 <default/> 159 <default/>
175 <context>main</context> 160 <context>main</context>
176 161
210 </para> 195 </para>
211 196
212 </directive> 197 </directive>
213 198
214 199
215 <directive name="worker_rlimit_core"> 200 <directive name="user">
216 <syntax>worker_rlimit_core <argument>size</argument></syntax> 201 <syntax>user <argument>user</argument> [<argument>group</argument>]</syntax>
217 <default/> 202 <default>user nobody nobody</default>
218 <context>main</context> 203 <context>main</context>
219 204
220 <para> 205 <para>
221 Changes the limit on the largest size of a core file 206 Defines <argument>user</argument> and <argument>group</argument>
222 (<c-def>RLIMIT_CORE</c-def>) for worker processes. 207 credentials used by worker processes.
223 Used to increase the limit without restarting the main process. 208 If <argument>group</argument> is omitted, a group whose name equals
224 </para> 209 that of <argument>user</argument> is used.
225
226 </directive>
227
228
229 <directive name="worker_rlimit_nofile">
230 <syntax>worker_rlimit_nofile <argument>number</argument></syntax>
231 <default/>
232 <context>main</context>
233
234 <para>
235 Changes the limit on the maximum number of open files
236 (<c-def>RLIMIT_NOFILE</c-def>) for worker processes.
237 Used to increase the limit without restarting the main process.
238 </para> 210 </para>
239 211
240 </directive> 212 </directive>
241 213
242 214
273 </para> 245 </para>
274 246
275 </directive> 247 </directive>
276 248
277 249
250 <directive name="worker_rlimit_core">
251 <syntax>worker_rlimit_core <argument>size</argument></syntax>
252 <default/>
253 <context>main</context>
254
255 <para>
256 Changes the limit on the largest size of a core file
257 (<c-def>RLIMIT_CORE</c-def>) for worker processes.
258 Used to increase the limit without restarting the main process.
259 </para>
260
261 </directive>
262
263
264 <directive name="worker_rlimit_nofile">
265 <syntax>worker_rlimit_nofile <argument>number</argument></syntax>
266 <default/>
267 <context>main</context>
268
269 <para>
270 Changes the limit on the maximum number of open files
271 (<c-def>RLIMIT_NOFILE</c-def>) for worker processes.
272 Used to increase the limit without restarting the main process.
273 </para>
274
275 </directive>
276
277
278 <directive name="working_directory"> 278 <directive name="working_directory">
279 <syntax>working_directory <argument>directory</argument></syntax> 279 <syntax>working_directory <argument>directory</argument></syntax>
280 <default/> 280 <default/>
281 <context>main</context> 281 <context>main</context>
282 282