Apache / 2.4.6 pré-configuração padrão do MPM no Centos 7

1

Onde posso encontrar a configuração padrão do MPM? Espero ver algo assim, seja em httpd.conf ou conf.modules.d/00-mpm.conf , mas não existe uma coisa dessas em nenhum deles:

<IfModule mpm_prefork_module>
    StartServers          2
    MinSpareServers       6
    MaxSpareServers      12
    MaxClients           60
    MaxRequestsPerChild  3000
</IfModule>

O 00-mpm.conf tem esta aparência:

# Select the MPM module which should be used by uncommenting exactly
# one of the following LoadModule lines:

# prefork MPM: Implements a non-threaded, pre-forking web server
# See: http://httpd.apache.org/docs/2.4/mod/prefork.html
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so

# worker MPM: Multi-Processing Module implementing a hybrid
# multi-threaded multi-process web server
# See: http://httpd.apache.org/docs/2.4/mod/worker.html
#
#LoadModule mpm_worker_module modules/mod_mpm_worker.so

# event MPM: A variant of the worker MPM with the goal of consuming
# threads only for connections with active processing
# See: http://httpd.apache.org/docs/2.4/mod/event.html
#
#LoadModule mpm_event_module modules/mod_mpm_event.so

Onde posso encontrar a configuração padrão para o prefork MPM?

    
por Mahdi 19.03.2016 / 17:43

1 resposta

0

Acho que essas seções foram removidas e cada diretiva tem um padrão para cada tipo de MPM. Consulte o link

    
por 17.10.2017 / 07:49