I am using Easyengine for a WordPress site, and I need to upload a large file to the server, I know I can use FTP / SSH to do so but in the long run I need it to be done via PHP, and the current upload limit that I see is 100M
when doing phpinfo();
The setup uses PHP 7 and the PHP INI
file that I found is at
etc/php/7.2/php.ini
I made changes to these parts:
upload_max_filesize = 2100M
post_max_size = 2100M
But even after this the upload limit is 100M as I can see on both WordPress plugin page that I am using as well as with phpinfo()
I read somewhere that Nginx needs to be restarted so I did ee site restart example.com
and both Nginx and PHP were restarted still no effect.
Some articles suggested adding a rule to /etc/nginx/nginx.conf
but unfortunately that path doesn't even exist, so I created that file at that path and tried but still no use.