Change maximum upload size in PHP
If you get an error 413 Request Entity Too Large do the following:
- Edit
php.inifile found in/etc/php/8.1/fpm- Change:
upload_max_filesize = 50M - Chage:
post_max_size = 50M
- Change:
- Edit
default.conffile or site-specific config file present insites-availabledirectory- Add:
client_max_body_size 120M;in theserverblock.
- Add:
- Restart
fpmandnginxsudo service php8.1-fpm restart sudo service nginx