Hey! Had the same issue last week. error 413 is a pain, but for nginx, you can tweak the `client_max_body_size` in your config file.
Just open your nginx config (usually in `/etc/nginx/nginx.conf`) and add this inside the `http` or `server` block:
`client_max_body_size 100M;` (or whatever size you need).
Don’t forget to restart nginx after (`sudo systemctl restart nginx`). If you’re on shared hosting, you might need to contact support tho.
Just open your nginx config (usually in `/etc/nginx/nginx.conf`) and add this inside the `http` or `server` block:
`client_max_body_size 100M;` (or whatever size you need).
Don’t forget to restart nginx after (`sudo systemctl restart nginx`). If you’re on shared hosting, you might need to contact support tho.
