I am getting 413 (Payload Too Large) when I try to upload a video with size 10MB. How can I change the app service upload size.
Server:Azure App service (Linux Nginx) API: PHP 8
I tried adding client_max_body_size 100M;didn't work
I am getting 413 (Payload Too Large) when I try to upload a video with size 10MB. How can I change the app service upload size.
Server:Azure App service (Linux Nginx) API: PHP 8
I tried adding client_max_body_size 100M;didn't work
you will need to modify the client_max_body_size directive in the nginx configuration file. The location of the configuration file is:
/etc/nginx/nginx.conf
add or edit the following setting:
client_max_body_size 100M;