worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
server_tokens off;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name www.baid.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root e:/55;
index index.html index.htm;
autoindex on;
autoindex_exact_size on;
autoindex_localtime on;
# proxy_pass http://localhost:8080/test/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}