国产欧美日韩第一页|日本一二三不卡视频|在线精品小视频,亚洲第一免费播放区,metcn人体亚洲一区,亚洲精品午夜视频

Nginx上傳文件大小的簡(jiǎn)單修改方法

2019-04-04 11:45:33 2241

方法如下:

我們找到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,接下來(lái)編輯它

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


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

這條文檔是否有幫助解決問(wèn)題?

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

在文檔使用中是否遇到以下問(wèn)題:
-->