1 | daemon off; |
2 | worker_processes auto; |
3 | error_log stderr; |
4 | pid /tmp/nginx.pid; |
5 | |
6 | events {} |
7 | |
8 | mail { |
9 | server_name localhost; |
10 | auth_http http://127.0.0.1:30000; |
11 | |
12 | proxy_pass_error_message on; |
13 | xclient off; |
14 | |
15 | server { |
16 | listen 2225; |
17 | protocol smtp; |
18 | smtp_auth none; |
19 | } |
20 | } |