nginx配置文件的说明
设置连接超时时间
http {
 ##
	# Basic Settings
	##
	sendfile on;
	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 10;
	types_hash_max_size 2048;
	client_max_body_size 20m;
 
keepalive_timeout 设置为10秒
设置连接超时时间
http {
 ##
	# Basic Settings
	##
	sendfile on;
	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 10;
	types_hash_max_size 2048;
	client_max_body_size 20m;
 
keepalive_timeout 设置为10秒
