In my case the problem was on Nginx configuration. To solve it I have to edit the file: /etc/nginx/nginx.conf
and add this line inside server block:
client_max_body_size 5M;
Restart Nginx and the problems its gone
sudo systemctl restart nginx
In my case the problem was on Nginx configuration. To solve it I have to edit the file: /etc/nginx/nginx.conf
and add this line inside server block:
client_max_body_size 5M;
Restart Nginx and the problems its gone
sudo systemctl restart nginx