0

I was trying to list the MPM prefork default configuration values in apache web server. In ubuntu, apache web server, I could access the values inside /etc/apache2/mods-available/mpm_prefork.conf file. But in CentOS, I couldn't find the similar file anywhere. By following this link I found out details can be found in the file /etc/httpd/conf.modules.d/00-mpm.conf but 'there is nothing except loading the module'. Is there any way for me to access/list the default values loaded for the MPM configuration ?

1 Answers1

1

Try grep -r MinSpareServers /etc/httpd, and so on. If you don't find the directives there, then they're not set in the configuration, so they're at their default values.

Andrew Schulman
  • 8,561
  • 21
  • 31
  • 47