
server {
	server_name  _;
	listen 80;

	root /opt/waixing/app/mes.js/http;
	
	access_log /var/log/nginx/access.http.log;
	error_log /var/log/nginx/error.http.log;

	tcp_nodelay on;
	gzip off;
	
	index index.html index.htm;

	location / {
		limit_rate 0;
		client_max_body_size 0;
		#fancyindex on;
	}

	location ~ /\.ht {
		deny all;
	}

}
