Nginx文件上传大小设置

1.在http里面添加配置


	#上传文件大小(4G)
	client_max_body_size 4096M;
	#超时时间(4小时)
	proxy_read_timeout 14400s;


(1)