1. 程式人生 > >nginx, PHP上傳檔案設定

nginx, PHP上傳檔案設定

上傳檔案太大導致超時或者返回413.設定如下項:

1./etc/php/7.0/fpm資料夾下的php.ini

post_max_size = 1400M
upload_max_filesize = 1400M

2.nginx 配置

server 模組中:

client_max_body_size  1400M;

location ~ .php 模組中:

client_body_timeout 3600s;