I'm running into an issue where images < 2MB are uploading without issues, but 2MB images are not uploading via form posts.
Configuration:
php.ini
upload_max_filesize 96M
post_max_size 96M
memory_limit 128M
nginx.conf
client_max_body_size 96M;
client_body_buffer_size 96M;
I'm not seeing any error messages in my nginx or php logs. Any ideas where to look for more information on where this is failing?