12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
# /etc/httpd/conf.d/mpm.conf
|
|
<IfModule mpm_event_module>
|
|
ServerLimit 8
|
|
ThreadLimit 32
|
|
ThreadsPerChild 16
|
|
MaxRequestWorkers 64
|
|
StartServers 2
|
|
MinSpareThreads 16
|
|
MaxSpareThreads 48
|
|
MaxConnectionsPerChild 2000
|
|
</IfModule>
|