Search:
Preferences
Help/Guide
About Trac
Wiki
View Tickets
Search
Context Navigation
Back to Ticket #237
Ticket #237
: nginx.conf
File nginx.conf,
287 bytes
(added by
David Strauss
,
14 years ago
)
Line
1
worker_processes 1;
2
daemon off;
3
4
events {
5
worker_connections 1024;
6
}
7
8
9
http {
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
}
Download in other formats:
Original Format