Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 192 |
- |
1 |
# This configuration file loads a CGI module appropriate to the MPM
|
|
|
2 |
# which has been configured in 00-mpm.conf. mod_cgid should be used
|
|
|
3 |
# with a threaded MPM; mod_cgi with the prefork MPM.
|
|
|
4 |
|
|
|
5 |
<IfModule mpm_worker_module>
|
|
|
6 |
LoadModule cgid_module modules/mod_cgid.so
|
|
|
7 |
</IfModule>
|
|
|
8 |
<IfModule mpm_event_module>
|
|
|
9 |
LoadModule cgid_module modules/mod_cgid.so
|
|
|
10 |
</IfModule>
|
|
|
11 |
<IfModule mpm_prefork_module>
|
|
|
12 |
LoadModule cgi_module modules/mod_cgi.so
|
|
|
13 |
</IfModule>
|
|
|
14 |
|