updated on Sun Jan 15 16:02:00 UTC 2012
[aur-mirror.git] / spawn-fcgi-php / nginx.conf.example
blob35d0868f3ebc217d74b09c44a11973fe68d04dd9
1 user http;
2 worker_processes  1;
4 error_log  logs/error.log;
6 #pid        logs/nginx.pid;
8 events {
9     worker_connections  1024;
13 http {
14     include       mime.types;
15     default_type  application/octet-stream;
17     sendfile        on;
18     #tcp_nopush     on;
20     #keepalive_timeout  0;
21     keepalive_timeout  65;
23     #gzip  on;
25         # the file with mapping username per port
26         include /etc/nginx/conf/map_user2port.conf;
27         #or only 
28         #include map_user2port.conf
30         # Servers configurations ...
31         include server.conf.example;
32                 
33     }