altarch-user / rpms / httpd

Forked from rpms/httpd 2 years ago
Clone

Blame SOURCES/01-cgi.conf

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