用Laravel做了个支持markdown的博客(插个题外话:免费开源、欢迎使用VienBlog),并且支持文件上传功能,然后在上传文件的时候,发现超过1M的文件就上传失败,原因是Nginx限制了上传文件的大小,修改Nginx默认的上传文件大小限制就好了。
我们找到Nginx的配置文件
nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
可以看到打印结果是在/etc/nginx/nginx.conf
,接下来编辑它
vim /etc/nginx/nginx.conf
在http
内加入client_max_body_size 10m
, 如下所示
[...]
http {
[...]
client_max_body_size 10m;
[...]
}
[...]
重载配置或者重启nginx
service nginx reload
or
service nginx restart
可喜可贺,可口可乐,可以为所欲为了。
viencoding.com版权所有,允许转载,但转载请注明出处和原文链接: https://viencoding.com/article/138