原文链接:https://vien.tech/article/138
前言
用Laravel做了个支持markdown的博客(插个题外话:免费开源、欢迎使用VienBlog),并且支持文件上传功能,然后在上传文件的时候,发现超过1M的文件就上传失败,原因是Nginx限制了上传文件的大小,修改Nginx默认的上传文件大小限制就好了。
方法如下:
我们找到Nginx的配置文件
1
2
3
|
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
,接下来编辑它
1
|
vim /etc/nginx/nginx .conf
|
在http内加入client_max_body_size 10m
, 如下所示
1
2
3
4
5
6
7
|
[...]
http {
[...]
client_max_body_size 10m;
[...]
}
[...]
|
重载配置或者重启nginx
1
|
service nginx reload
|
or
1
|
service nginx restart
|
可喜可贺,可口可乐,可以为所欲为了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。