久久青草精品A片狠狠,日韩欧美视频一区二区,亚洲国码AV日韩,国产精品黄在

Nginx上傳文件大小的簡單修改方法

2019-04-04 11:45:33 8308

方法如下:

我們找到Nginx的配置文件

nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

可以看到打印結(jié)果是在/etc/nginx/nginx.conf,接下來編輯它

vim /etc/nginx/nginx.conf

在http內(nèi)加入client_max_body_size 10m, 如下所示

[...]
http {
 [...]
 client_max_body_size 10m;
  [...]
}
[...]

重載配置或者重啟nginx

service nginx reload

or

service nginx restart


提交成功!非常感謝您的反饋,我們會繼續(xù)努力做到更好!

這條文檔是否有幫助解決問題?

非常抱歉未能幫助到您。為了給您提供更好的服務(wù),我們很需要您進一步的反饋信息:

在文檔使用中是否遇到以下問題: