diff options
author | Bill Marquette <billm@pfsense.org> | 2006-10-17 05:35:15 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2006-10-17 05:35:15 +0000 |
commit | edd00534a2ac9fbfa4d20cf197e6f163941ef1b6 (patch) | |
tree | d759f759267b9a7615e2940eec9fb84b9ff85add /usr/local/lib | |
parent | 89a75ca9d12517b4d3b9d6fd58196d726e9ee010 (diff) | |
download | pfsense-edd00534a2ac9fbfa4d20cf197e6f163941ef1b6.zip pfsense-edd00534a2ac9fbfa4d20cf197e6f163941ef1b6.tar.gz |
Only allocate 5M to APC cache - the contents of /etc/inc and /usr/local/www
add up to about 4.2M, this should still allow us to cache all our PHP in
shared memory.
Reported-By: gbelanger on forums
Diffstat (limited to 'usr/local/lib')
-rw-r--r-- | usr/local/lib/php.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/lib/php.ini b/usr/local/lib/php.ini index 95a507d..a756ca3 100644 --- a/usr/local/lib/php.ini +++ b/usr/local/lib/php.ini @@ -12,6 +12,6 @@ html_errors = Off include_path = ".:/etc/inc:/usr/local/www:/usr/local/captiveportal:/usr/local/pkg" apc.enabled="1" apc.enable_cli="1" -apc.shm_size="30" +apc.shm_size="5" extension=apc.so -extension=radius.so
\ No newline at end of file +extension=radius.so |