Blame SPECS/01-cgi.conf

Packit 718f12
# This configuration file loads a CGI module appropriate to the MPM
Packit 718f12
# which has been configured in 00-mpm.conf.  mod_cgid should be used
Packit 718f12
# with a threaded MPM; mod_cgi with the prefork MPM.
Packit 718f12
Packit 718f12
<IfModule mpm_worker_module>
Packit 718f12
   LoadModule cgid_module modules/mod_cgid.so
Packit 718f12
</IfModule>
Packit 718f12
<IfModule mpm_event_module>
Packit 718f12
   LoadModule cgid_module modules/mod_cgid.so
Packit 718f12
</IfModule>
Packit 718f12
<IfModule mpm_prefork_module>
Packit 718f12
   LoadModule cgi_module modules/mod_cgi.so
Packit 718f12
</IfModule>
Packit 718f12