comparison xml/en/docs/mail/ngx_mail_core_module.xml @ 1528:3ae5301ea37a

Added the "events" section to examples of stream and mail.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 02 Jul 2015 14:12:22 +0300
parents b628e042a15e
children f024ac0ec5c7
comparison
equal deleted inserted replaced
1527:f9a138e5ab14 1528:3ae5301ea37a
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_mail_core_module" 10 <module name="Module ngx_mail_core_module"
11 link="/en/docs/mail/ngx_mail_core_module.html" 11 link="/en/docs/mail/ngx_mail_core_module.html"
12 lang="en" 12 lang="en"
13 rev="7"> 13 rev="8">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 This module is not built by default, it should be 18 This module is not built by default, it should be
28 <para> 28 <para>
29 <example> 29 <example>
30 worker_processes 1; 30 worker_processes 1;
31 31
32 error_log /var/log/nginx/error.log info; 32 error_log /var/log/nginx/error.log info;
33
34 events {
35 worker_connections 1024;
36 }
33 37
34 mail { 38 mail {
35 server_name mail.example.com; 39 server_name mail.example.com;
36 auth_http localhost:9000/cgi-bin/nginxauth.cgi; 40 auth_http localhost:9000/cgi-bin/nginxauth.cgi;
37 41