arrfab / rpms / httpd

Forked from rpms/httpd 5 years ago
Clone
59234c
# This configuration file loads a CGI module appropriate to the MPM
59234c
# which has been configured in 00-mpm.conf.  mod_cgid should be used
59234c
# with a threaded MPM; mod_cgi with the prefork MPM.
59234c
59234c
<IfModule mpm_worker_module>
59234c
   LoadModule cgid_module modules/mod_cgid.so
59234c
</IfModule>
59234c
<IfModule mpm_event_module>
59234c
   LoadModule cgid_module modules/mod_cgid.so
59234c
</IfModule>
59234c
<IfModule mpm_prefork_module>
59234c
   LoadModule cgi_module modules/mod_cgi.so
59234c
</IfModule>
59234c