blob: 672ce8c8391b5c65a9fc89eb17165d284534ea00 [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 {
Igor Sysoev5cf4d1a2007-08-14 19:26:20 +000018 include mime.types;
Igor Sysoev0e8348c2004-10-04 15:04:06 +000019 default_type application/octet-stream;
20
Igor Sysoev641ba442008-11-05 13:26:04 +000021 #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
Igor Sysoev74732dd2009-04-06 13:43:46 +000022 # '$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$ {
Igor Sysoev72c51842008-02-28 20:44:16 +000066 # root html;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000067 # fastcgi_pass 127.0.0.1:9000;
68 # fastcgi_index index.php;
Igor Sysoevffe71442006-02-08 15:33:12 +000069 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
Igor Sysoev5cf4d1a2007-08-14 19:26:20 +000070 # include fastcgi_params;
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000071 #}
72
Igor Sysoevac72bd12006-05-04 15:32:46 +000073 # deny access to .htaccess files, if Apache's document root
74 # concurs with nginx's one
Igor Sysoev3259e852005-01-19 13:10:56 +000075 #
Igor Sysoev5192b362005-07-08 14:34:20 +000076 #location ~ /\.ht {
Igor Sysoev3259e852005-01-19 13:10:56 +000077 # deny all;
78 #}
Igor Sysoev0e8348c2004-10-04 15:04:06 +000079 }
Igor Sysoev0e5dc5c2005-11-15 13:30:52 +000080
81
82 # another virtual host using mix of IP-, name-, and port-based configuration
83 #
84 #server {
85 # listen 8000;
86 # listen somename:8080;
87 # server_name somename alias another.alias;
88
89 # location / {
90 # root html;
91 # index index.html index.htm;
92 # }
93 #}
94
95
96 # HTTPS server
97 #
98 #server {
99 # listen 443;
100 # server_name localhost;
101
102 # ssl on;
103 # ssl_certificate cert.pem;
104 # ssl_certificate_key cert.key;
105
106 # ssl_session_timeout 5m;
107
108 # ssl_protocols SSLv2 SSLv3 TLSv1;
109 # ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
110 # ssl_prefer_server_ciphers on;
111
112 # location / {
113 # root html;
114 # index index.html index.htm;
115 # }
116 #}
117
Igor Sysoev0e8348c2004-10-04 15:04:06 +0000118}