Commit 8cd53d1f authored by Aurélien Vermylen's avatar Aurélien Vermylen

Fix monitor apache configuration template to avoid:

"Scoreboard is full,not at MaxRequestWorkers" errors in monitor instance logs.

See https://httpd.apache.org/docs/2.4/mod/mpm_common.html#serverlimit,
which indicates to set MaxClients rather than ServerLimit.
parent 65c794dd
......@@ -61,7 +61,7 @@ eggs =
# Monitor templates files
[monitor-httpd-conf]
<= monitor-template-base
md5sum = f2d6951670733de3b37c0ebe9eee343b
md5sum = 74723d46ad34d0b93a00c3b9223fb99b
filename = monitor-httpd.conf.in
[monitor-template-wrapper]
......
PidFile "{{ parameter_dict.get('pid-file') }}"
StartServers 1
ServerLimit 1
MaxClients 4
ThreadLimit 4
ThreadsPerChild 4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment