What solutions do I have to enforce memory limit on PHP server?

Posted by Zulgrib on Server Fault See other posts from Server Fault or by Zulgrib
Published on 2013-11-10T23:02:43Z Indexed on 2013/11/11 3:57 UTC
Read the original article Hit count: 371

Filed under:
|
|

I would like to enforce memory limit on a folder basis (and have it applied on subfolders) but I don't want the user able to change the memory limit.

I know I can disable ini_set and I know I can enforce a hard limit or deny ini_set with Suhosin.

With the first one, I doubt it will block changing it from the user.ini file, for the second, the user may still be able to change it to the hard limit I enforce with Suhosin.

In both cases, I would prefer to not entierly block ini_set because it may have a legit use for other settings.

In case it is important, I'm using PHP version 5.4.4 with nginx (PHP in FPM mode)

© Server Fault or respective owner

Related posts about php

Related posts about nginx