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.

64 lines
2.5 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../apache/config.in
  5. # Copyright (C) 2006 - 2008 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. # Copyright (C) 1998 - 2004 Clifford Wolf
  8. #
  9. # More information can be found in the files COPYING and README.
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; version 2 of the License. A copy of the
  14. # GNU General Public License can be found in the file COPYING.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. if pkgcheck apache X
  17. then
  18. menu_begin MENU_PKG_APACHE 'Apache Package Options'
  19. text 'Install prefix for apache packages' \
  20. SDECFG_PKG_APACHE_PREFIX "opt/apache"
  21. pkgout
  22. list= ; default=
  23. while read pkg ver ; do
  24. if [ "$pkg" = "bdb42" ] ; then
  25. default="$pkg"
  26. elif [ "$default" = "" ] ; then
  27. default="$pkg"
  28. fi
  29. list="$list $pkg Use_${pkg}_($ver)_as_standard_DB"
  30. done < <(grep "^X .* bdb[0-9 ]*" $cfgtmpdir/config/packages | \
  31. cut -f5,6 -d' ' | sort)
  32. if [ "$list" ] ; then
  33. choice SDECFG_PKG_APACHE_BDB $default $list
  34. fi
  35. bool "Enable suEXEC" SDECFG_PKG_APACHE_SUEXEC 0
  36. if [ "$SDECFG_PKG_APACHE_SUEXEC" == "1" ]; then
  37. text 'suEXEC document root' \
  38. SDECFG_PKG_APACHE_DOCROOT "lib/htdocs"
  39. # text 'suEXEC user directory' \
  40. # SDECFG_PKG_APACHE_USERDIR "public_html"
  41. fi
  42. bool "DSO support (mod_so)" SDECFG_PKG_APACHE_MOD_SO 1
  43. bool "Anonymous user access (mod_auth_anon)" SDECFG_PKG_APACHE_MOD_AUTH_ANON 0
  44. bool "DBM authentication support (mod_auth_dbm)" SDECFG_PKG_APACHE_MOD_AUTH_DBM 0
  45. bool "Digest authentication support (mod_auth_digest)" SDECFG_PKG_APACHE_MOD_AUTH_DIGEST 0
  46. bool "LDAP authentication support (mod_auth_ldap)" SDECFG_PKG_APACHE_MOD_AUTH_LDAP 0
  47. bool "SSL/TLS support (mod_ssl)" SDECFG_PKG_APACHE_MOD_SSL 1
  48. bool "WebDAV support (mod_dav)" SDECFG_PKG_APACHE_MOD_DAV 1
  49. bool "Dynamic file caching support (mod_cache)" SDECFG_PKG_APACHE_MOD_CACHE 0
  50. bool "Disk caching support (mod_disk_cache)" SDECFG_PKG_APACHE_MOD_DISK_CACHE 0
  51. bool "Proxy support (mod_proxy)" SDECFG_PKG_APACHE_MOD_PROXY 0
  52. bool "URL rewrite support (mod_rewrite)" SDECFG_PKG_APACHE_MOD_REWRITE 1
  53. bool "Compression support (mod_deflate)" SDECFG_PKG_APACHE_MOD_DEFLATE 1
  54. bool "Server information support (mod_info)" SDECFG_PKG_APACHE_MOD_INFO 0
  55. bool "URL spelling correction support (mod_spelling)" SDECFG_PKG_APACHE_MOD_SPELLING 0
  56. menu_end
  57. fi