The apps don’t even run at all, because it immediately crashes as soon as php boots.
2023-10-01T23:19:31Z app[1857939c420428] fra [info][01-Oct-2023 23:19:31] NOTICE: PHP message: PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 12288 bytes) in Unknown on line 0
That’s only 128MB. I have configured PHP_MEMORY_LIMIT = "1024M" but it seems to be ignored. Two of our env’s are now offline and not sure what to do.
CC @fideloper-fly any idea maybe? Did you by any chance do a change to the fideloper/fly-laravel image?
I see that you’re editing php.ini, while that env var in this case is read within php-fpm’s pool.d/www.conf file (see that first link above for reference, it’s setting php_admin_value[memory_limit] = ${PHP_MEMORY_LIMIT}), which should in theory over-ride the php.ini value for the memory limit