~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to modules/generators/config5.m4

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl modules enabled in this directory by default
 
2
 
 
3
dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
 
4
 
 
5
APACHE_MODPATH_INIT(generators)
 
6
 
 
7
APACHE_MODULE(status, process/thread monitoring, , , yes)
 
8
APACHE_MODULE(autoindex, directory listing, , , yes)
 
9
APACHE_MODULE(asis, as-is filetypes, , , yes)
 
10
APACHE_MODULE(info, server information, , , most)
 
11
APACHE_MODULE(suexec, set uid and gid for spawned processes, , , no, [
 
12
              other_targets=suexec ] )
 
13
 
 
14
if ap_mpm_is_threaded; then
 
15
# if we are using a threaded MPM, we will get better performance with
 
16
# mod_cgid, so make it the default.
 
17
    APACHE_MODULE(cgid, CGI scripts, , , yes)
 
18
    APACHE_MODULE(cgi, CGI scripts, , , no)
 
19
else
 
20
# if we are using a non-threaded MPM, it makes little sense to use
 
21
# mod_cgid, and it just opens up holes we don't need.  Make mod_cgi the
 
22
# default
 
23
    APACHE_MODULE(cgi, CGI scripts, , , yes)
 
24
    APACHE_MODULE(cgid, CGI scripts, , , no)
 
25
fi
 
26
 
 
27
APACHE_MODPATH_FINISH