Ticket #237: nginx.conf

File nginx.conf, 287 bytes (added by David Strauss, 14 years ago)
Line 
1worker_processes 1;
2daemon off;
3
4events {
5 worker_connections 1024;
6}
7
8
9http {
10 server {
11 #listen 8080;
12 listen fd:3;
13 listen fd:4;
14 listen fd:5;
15
16 location / {
17 root html;
18 index index.html index.htm;
19 }
20 }
21}