Nginx服務器出現413 request entity too large nginx的處理方法

Nginx 413產生緣由:
php

 nginx默認上傳文件的大小是1M,超過上傳文件的限制後就會產生該問題,413 request entity too large nginx,能夠在nginx的設置中修改默認大小。nginx


解決方法以下:
vim

  1. 打開nginx配置文件 nginx.conf, 路徑通常是:/etc/nginx/nginx.conf。
    spa

sudo vim /etc/nginx/nginx.conf

  2.在http{}段中加入 client_max_body_size 20m; 20m爲容許最大上傳的大小。
rest


  3.保存後重啓nginx,問題解決。code

sudo service nginx restart;
相關文章
相關標籤/搜索