OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

184 lines
7.1 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../apache/config.hlp
  5. # Copyright (C) 2004 - 2006 The T2 SDE Project
  6. # Copyright (C) 1998 - 2004 Clifford Wolf
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- T2-COPYRIGHT-NOTE-END ---
  15. MENU_PKG_APACHE
  16. Here you will find config options for the apache packages.
  17. SDECFG_PKG_APACHE_MOD_SO
  18. Enable DSO capability provided by mod_so.
  19. The Apache HTTP Server is a modular program where the administrator
  20. can choose the functionality to include in the server by selecting a
  21. set of modules. The modules can be statically compiled into the httpd
  22. binary when the server is built.
  23. Alternatively, modules can be compiled as Dynamic Shared Objects (DSOs)
  24. that exist separately from the main httpd binary file. DSO modules may
  25. be compiled at the time the server is built, or they may be compiled
  26. and added at a later time using the Apache Extension Tool (apxs).
  27. More Documentantion about this topic can be found here:
  28. http://httpd.apache.org/docs-2.0/dso.html
  29. SDECFG_PKG_APACHE_MOD_AUTH_ANON
  30. Enable anonymous user access provided by mod_auth_anon.
  31. This module does access control in a manner similar to anonymous-ftp
  32. sites; i.e. have a 'magic' user id 'anonymous' and the email address
  33. as a password. These email addresses can be logged.
  34. Combined with other (database) access control methods, this allows for
  35. effective user tracking and customization according to a user profile
  36. while still keeping the site open for 'unregistered' users. One advantage
  37. of using Auth-based user tracking is that, unlike magic-cookies and funny
  38. URL pre/postfixes, it is completely browser independent and it allows
  39. users to share URLs.
  40. More Documentantion about this topic can be found here:
  41. http://httpd.apache.org/docs-2.0/mod/mod_auth_anon.html
  42. SDECFG_PKG_APACHE_MOD_AUTH_DBM
  43. mod_auth_dbm provides for HTTP Basic Authentication, where the usernames
  44. and passwords are stored in DBM type database files.
  45. Use this option to enable the module.
  46. More Documentantion about this topic can be found here:
  47. http://httpd.apache.org/docs-2.0/mod/mod_auth_dbm.html
  48. SDECFG_PKG_APACHE_MOD_AUTH_DIGEST
  49. Enable RFC2617 Digest authentication provided by mod_auth_digest.
  50. This module uses plain text files to store the credentials.
  51. More Documentantion about this topic can be found here:
  52. http://httpd.apache.org/docs-2.0/mod/mod_auth_digest.html
  53. SDECFG_PKG_APACHE_MOD_AUTH_LDAP
  54. Allows an LDAP directory to be used to store the database for HTTP Basic
  55. authentication.
  56. More Documentantion about this topic can be found here:
  57. http://httpd.apache.org/docs-2.0/mod/mod_auth_ldap.html
  58. SDECFG_PKG_APACHE_MOD_SSL
  59. Enable support for SSL/TLS provided by mod_ssl.
  60. The Apache HTTP Server module mod_ssl provides an interface to the OpenSSL
  61. library, which provides Strong Encryption using the Secure Sockets Layer
  62. and Transport Layer Security protocols.
  63. More Documentantion about this topic can be found here:
  64. http://httpd.apache.org/docs-2.0/ssl/
  65. SDECFG_PKG_APACHE_MOD_DAV
  66. Enable the WebDAV protocol handling provided by mod_dav.
  67. mod_dav provides class 1 and class 2 WebDAV ('Web-based Distributed Authoring
  68. and Versioning') functionality for Apache. This extension to the HTTP protocol
  69. allows creating, moving, copying, and deleting resources and collections on a
  70. remote web server.
  71. Support for filesystem resources is provided by the seperate module mod_dav_fs.
  72. mod_dav_fs is also automatically enabled if you choose this option.
  73. More Documentantion about this topic can be found here:
  74. http://httpd.apache.org/docs-2.0/mod/mod_dav.html
  75. SDECFG_PKG_APACHE_MOD_CACHE
  76. Enable dynamic file caching provided by mod_cache.
  77. mod_cache implements an RFC 2616 compliant HTTP content cache that can be used
  78. to cache either local or proxied content.
  79. This experimental module may be interesting for servers with high load or caching
  80. proxy servers. At least one storage management module (e.g. mod_disk_cache or
  81. mod_mem_cache) is also necessary.
  82. More Documentantion about this topic can be found here:
  83. http://httpd.apache.org/docs-2.0/mod/mod_cache.html
  84. SDECFG_PKG_APACHE_MOD_DISK_CACHE
  85. Enable disk caching provided by mod_disk_cache.
  86. mod_disk_cache implements a disk based storage manager.
  87. It is primarily of use in conjunction with mod_proxy.
  88. More Documentantion about this topic can be found here:
  89. http://httpd.apache.org/docs-2.0/mod/mod_disk_cache.html
  90. SDECFG_PKG_APACHE_MOD_PROXY
  91. Enable the proxy/gateway functionality provided by mod_proxy.
  92. The proxying capabilities for CONNECT, FTP and HTTP are provided by the seperate
  93. modules mod_proxy_connect, mod_proxy_ftp and mod_proxy_http.
  94. These three modules are also automatically enabled with this option.
  95. More Documentantion about this topic can be found here:
  96. http://httpd.apache.org/docs-2.0/mod/mod_proxy.html
  97. SDECFG_PKG_APACHE_MOD_REWRITE
  98. Enable rule based URL manipulation provided by mod_rewrite.
  99. This module uses a rule-based rewriting engine (based on a regular-expression parser)
  100. to rewrite requested URLs on the fly. It supports an unlimited number of rules and an
  101. unlimited number of attached rule conditions for each rule to provide a really flexible
  102. and powerful URL manipulation mechanism. The URL manipulations can depend on various
  103. tests, for instance server variables, environment variables, HTTP headers, time stamps
  104. and even external database lookups in various formats can be used to achieve a really
  105. granular URL matching.
  106. More Documentantion about this topic can be found here:
  107. http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html
  108. SDECFG_PKG_APACHE_MOD_DEFLATE
  109. Enable deflate transfer encoding provided by mod_deflate.
  110. The mod_deflate module provides the DEFLATE output filter that allows output from
  111. your server to be compressed before being sent to the client over the network.
  112. More Documentantion about this topic can be found here:
  113. http://httpd.apache.org/docs-2.0/mod/mod_deflate.html
  114. SDECFG_PKG_APACHE_MOD_INFO
  115. Enable the server information provided by mod_info.
  116. mod_info provides a comprehensive overview of the server configuration
  117. More Documentantion about this topic can be found here:
  118. http://httpd.apache.org/docs-2.0/mod/mod_info.html
  119. SDECFG_PKG_APACHE_MOD_SPELLING
  120. Enable the functionality to correct common URL misspellings, which is provided
  121. by mod_speling.
  122. Requests to documents sometimes cannot be served by the core apache server because
  123. the request was misspelled or miscapitalized. This module addresses this problem by
  124. trying to find a matching document, even after all other modules gave up.
  125. More Documentantion about this topic can be found here:
  126. http://httpd.apache.org/docs-2.0/mod/mod_speling.html