Upon checking the php memory_limit set on the laravel project hosted by the nginx server, it has a differing value for the local memory_limit and master memory_limit
I want the project's php memory_limit to follow the master setting (php.ini) rather than the local setting.
However I am unable to find where the memory limit of 1536M is being set on, can someone please point me in the right direction
I have checked the following files
- nano /etc/nginx/conf.d/default.conf (No lines with memory_limit found)
- nano /etc/php-fpm.d/www.conf (;php_admin_value 128M)
- nano /etc/php.ini (memory_limit = 128M)

