Http error uploading files over 100MB in wordpress

So far as I can tell I’ve changed the max file size upload everywhere… nginx.conf every single php.ini file I could find but I still get a generic http error when I try to upload a file over 100MB in wordpress. Set the limit to 700MB.

Anyone possiably have an idea what the problem is?

Thanks.

Here the change to do : in your php.ini file :

max_execution_time = 3000
max_input_time = 6000
memory_limit = 700M
upload_max_filesize = 700M
post_max_size = 700M

In your /etc/nginx/nginx.conf

client_max_body_size 700m;

thanks! it worked