Here is a excellent tutorial show you how to Solve nginx Error 413 Request Entity Too Large:

Changing your php.ini-settings alone won’t do much. So to fix this problem, follow these steps.

Open up your nginx.conf-file, with an editor of your choice:

vim /etc/nginx/nginx.conf

..and add client_max_body_size to the http-section:

client_max_body_size 20M;

Save and close the file, apply the changes to nginx, and reload:

/usr/sbin/nginx -t
/usr/sbin/nginx -s reload

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
  • 2022-02-21
  • 2021-10-04
猜你喜欢
  • 2022-12-23
  • 2021-12-14
  • 2021-07-28
  • 2022-12-23
  • 2021-08-09
相关资源
相似解决方案