当我在 phpmyadmin 中上传文件时,这个问题出现在413 Request Entity Too Large
我的配置中php.ini
post_max_size = 100M
upload_max_filesize = 100M
memory_limit = 256M
我有带有 FASTCGI php-fpm 127.0.0.1:9000 的 NGINX 服务器,其中 php.ini 在 /etc/php5/fpm/php.ini 下
我在 php.ini 中增加了 upload_max_filesize 和 post_max_size
Fastcgi 参数是这样的
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M"
client_max_body_size 100M;
我重新启动了php-fpm和nginx,但问题仍然存在
这个问题来自 nginx,在你的 nginx.conf 中设置以下值:
显然,如果您想要更大的文件大小然后 100MB,请将此值设置得更高
您可以在 nginx 文档中阅读有关 client_max_body_size 的更多信息:http: //nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
只是我改变
fastcgi_pass
了正确的来源