We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to upload a file larger than 2MB in PHPMyAdmin. I get the error: 413 Request Entity Too Large.
I have upped the upload_max_filesize and the post_max_size to 150MB in the php.ini file and restarted php-fpm.
upload_max_filesize
post_max_size
php-fpm
This did not solve the issue.
My guess is that there should be something to configure within /ansible/group_vars/development.yml
/ansible/group_vars/development.yml
Any ideas?
The text was updated successfully, but these errors were encountered:
I was able to fix this by modifying: /etc/nginx/nginx.conf
/etc/nginx/nginx.conf
This is what I added:
http { client_max_body_size 20M; }
Sorry, something went wrong.
No branches or pull requests
When I try to upload a file larger than 2MB in PHPMyAdmin. I get the error: 413 Request Entity Too Large.
I have upped the
upload_max_filesize
and thepost_max_size
to 150MB in the php.ini file and restartedphp-fpm
.This did not solve the issue.
My guess is that there should be something to configure within
/ansible/group_vars/development.yml
Any ideas?
The text was updated successfully, but these errors were encountered: