blob: 1edd0a63caaf343c5a03caed2a5bb5f2e2449946 [file] [log] [blame]
Igor Sysoev0e8348c2004-10-04 15:04:06 +00001
Igor Sysoevc0edbcc2004-10-21 15:34:38 +00002#user nobody;
Igor Sysoev09c684b2005-11-09 17:25:55 +00003worker_processes 1;
Igor Sysoev0e8348c2004-10-04 15:04:06 +00004
5#error_log logs/error.log;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +00006#error_log logs/error.log notice;
7#error_log logs/error.log info;
8
Igor Sysoev0e8348c2004-10-04 15:04:06 +00009#pid logs/nginx.pid;
10
11
12events {
Igor Sysoev09c684b2005-11-09 17:25:55 +000013 worker_connections 1024;
Igor Sysoev0e8348c2004-10-04 15:04:06 +000014}
15
16
17http {
18 include conf/mime.types;
19 default_type application/octet-stream;
20
Igor Sysoeve8f23e92006-09-16 07:14:31 +000021 #log_format main '$remote_addr - $remote_user [$time_local] $request '
22 # '"$status" $body_bytes_sent "$http_referer" '
Igor Sysoevef809b82006-06-28 16:00:26 +000023 # '"$http_user_agent" "$http_x_forwarded_for"';
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000024
25 #access_log logs/access.log main;
26
Igor Sysoevd039a2e2005-02-22 14:40:13 +000027 sendfile on;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000028 #tcp_nopush on;
Igor Sysoevd039a2e2005-02-22 14:40:13 +000029
Igor Sysoevb145b062005-06-15 18:33:41 +000030 #keepalive_timeout 0;
Igor Sysoevac72bd12006-05-04 15:32:46 +000031 keepalive_timeout 65;
Igor Sysoev0e8348c2004-10-04 15:04:06 +000032
33 #gzip on;
34
35 server {
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000036 listen 80;
37 server_name localhost;
Igor Sysoev0e8348c2004-10-04 15:04:06 +000038
Igor Sysoev09c684b2005-11-09 17:25:55 +000039 #charset koi8-r;
Igor Sysoev0e8348c2004-10-04 15:04:06 +000040
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000041 #access_log logs/host.access.log main;
Igor Sysoev0e8348c2004-10-04 15:04:06 +000042
43 location / {
44 root html;
45 index index.html index.htm;
46 }
47
Igor Sysoevef809b82006-06-28 16:00:26 +000048 #error_page 404 /404.html;
49
50 # redirect server error pages to the static page /50x.html
51 #
52 error_page 500 502 503 504 /50x.html;
53 location = /50x.html {
54 root html;
55 }
56
Igor Sysoev9ac946b2005-10-24 15:09:41 +000057 # proxy the PHP scripts to Apache listening on 127.0.0.1:80
58 #
59 #location ~ \.php$ {
60 # proxy_pass http://127.0.0.1;
61 #}
62
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000063 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
64 #
65 #location ~ \.php$ {
66 # fastcgi_pass 127.0.0.1:9000;
67 # fastcgi_index index.php;
Igor Sysoevffe71442006-02-08 15:33:12 +000068 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000069 # include conf/fastcgi_params;
70 #}
71
Igor Sysoevac72bd12006-05-04 15:32:46 +000072 # deny access to .htaccess files, if Apache's document root
73 # concurs with nginx's one
Igor Sysoev3259e852005-01-19 13:10:56 +000074 #
Igor Sysoev5192b362005-07-08 14:34:20 +000075 #location ~ /\.ht {
Igor Sysoev3259e852005-01-19 13:10:56 +000076 # deny all;
77 #}
Igor Sysoev0e8348c2004-10-04 15:04:06 +000078 }
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000079
80
81 # another virtual host using mix of IP-, name-, and port-based configuration
82 #
83 #server {
84 # listen 8000;
85 # listen somename:8080;
86 # server_name somename alias another.alias;
87
88 # location / {
89 # root html;
90 # index index.html index.htm;
91 # }
92 #}
93
94
95 # HTTPS server
96 #
97 #server {
98 # listen 443;
99 # server_name localhost;
100
101 # ssl on;
102 # ssl_certificate cert.pem;
103 # ssl_certificate_key cert.key;
104
105 # ssl_session_timeout 5m;
106
107 # ssl_protocols SSLv2 SSLv3 TLSv1;
108 # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
109 # ssl_prefer_server_ciphers on;
110
111 # location / {
112 # root html;
113 # index index.html index.htm;
114 # }
115 #}
116
Igor Sysoev0e8348c2004-10-04 15:04:06 +0000117}