summaryrefslogtreecommitdiffstats
path: root/mod_perl.pl
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-02-09 09:43:50 +0100
committerByron Jones <bjones@mozilla.com>2012-02-09 09:43:50 +0100
commit31aa5389fb4d8b2a82227795909befe28bd2a219 (patch)
tree7d4faf443a752f5adac82c3be12ad4592dc98c0d /mod_perl.pl
parent5890d8b8c447647f1c4b1fb3f53ccea04a23bc70 (diff)
downloadbugzilla-31aa5389fb4d8b2a82227795909befe28bd2a219.tar.gz
bugzilla-31aa5389fb4d8b2a82227795909befe28bd2a219.tar.xz
Bug 713213: increase apache sizelimit
Diffstat (limited to 'mod_perl.pl')
-rw-r--r--mod_perl.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod_perl.pl b/mod_perl.pl
index 25169a849..e3a50e4ea 100644
--- a/mod_perl.pl
+++ b/mod_perl.pl
@@ -59,9 +59,9 @@ Bugzilla::CGI->compile(qw(:cgi :push));
use Apache2::SizeLimit;
# This means that every httpd child will die after processing
-# a CGI if it is taking up more than 100MB of RAM all by itself,
+# a CGI if it is taking up more than 1600MB of RAM all by itself,
# not counting RAM it is sharing with the other httpd processes.
-Apache2::SizeLimit->set_max_unshared_size(100_000);
+Apache2::SizeLimit->set_max_unshared_size(1_600_000);
my $cgi_path = Bugzilla::Constants::bz_locations()->{'cgi_path'};