Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Single change event cfg so we can bugfix release #774

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
LIST OF CHANGES

release 97.0.1
- update httpd.conf with new values for mpm event

release 97.0.0
- Change CI workflow to standard file name
- Change to Perl versions from Perlbrew
Expand Down
19 changes: 12 additions & 7 deletions wtsi_local/httpd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,18 @@ Group ${APACHE_RUN_GROUP}
</IfModule>

<IfModule mpm_event_module>
StartServers 5
MinSpareThreads 5
MaxSpareThreads 10
ServerLimit 50
ThreadsPerChild 1
MaxRequestWorkers 50
MaxConnectionsPerChild 50
KeepAlive On
KeepAliveTimeout 5
MaxKeepAliveRequests 128

ServerLimit 15
StartServers 5
ThreadLimit 128
ThreadsPerChild 128
MaxRequestWorkers 1280
MinSpareThreads 256
MaxSpareThreads 512
MaxConnectionsPerChild 2048
</IfModule>


Expand Down