diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2015-06-03 18:08:25 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2015-06-03 18:08:25 -0400 |
commit | c0d4d133895ce0d25d9b8ea0bbdbbd63b284ab18 (patch) | |
tree | 190dfc82a1f4b5ab6da8e3e31562e9d6a21f97fd /config | |
parent | f5e3369fea74c031349921eb1ff5e25366724244 (diff) | |
download | pfsense-packages-c0d4d133895ce0d25d9b8ea0bbdbbd63b284ab18.tar.gz pfsense-packages-c0d4d133895ce0d25d9b8ea0bbdbbd63b284ab18.tar.bz2 pfsense-packages-c0d4d133895ce0d25d9b8ea0bbdbbd63b284ab18.zip |
Increase PHP memory to 384MB to handle large rules arrays.
Diffstat (limited to 'config')
-rwxr-xr-x | config/snort/snort.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort.inc b/config/snort/snort.inc index 64ab6ea5..bb5ff792 100755 --- a/config/snort/snort.inc +++ b/config/snort/snort.inc @@ -40,7 +40,7 @@ require_once("filter.inc"); require("/usr/local/pkg/snort/snort_defs.inc"); // Snort GUI needs some extra PHP memory space to manipulate large rules arrays -ini_set("memory_limit", "256M"); +ini_set("memory_limit", "384M"); // Explicitly declare this as global so it works through function call includes global $g, $config, $rebuild_rules, $pfSense_snort_version; |