当您尝试通过http:上传文件时,您的浏览器中会看到以下错误:
413 Request entity Too Large
解
打开/etc/nginx/nginx.conf
...
nano /etc/nginx/nginx.conf
...并添加足够大的client_max_body_size
值,例如:
client_max_body_size 2M;
之后重新启动nginx:
service nginx restart
当您尝试通过http:上传文件时,您的浏览器中会看到以下错误:
413 Request entity Too Large
打开/etc/nginx/nginx.conf
...
nano /etc/nginx/nginx.conf
...并添加足够大的client_max_body_size
值,例如:
client_max_body_size 2M;
之后重新启动nginx:
service nginx restart