Browse Source

"Alan J. Wylie" <ebpxyvahk@wylie.me.uk>:

added configuration options for server status and mod_auth_digest to apache


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2208 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
5bd8271fbc
2 changed files with 9 additions and 0 deletions
  1. +6
    -0
      package/rene/apache/apache.conf
  2. +3
    -0
      package/rene/apache/config.in

+ 6
- 0
package/rene/apache/apache.conf

@ -37,6 +37,12 @@ if [ $pkg = "apache" ] ; then
--enable-disk-cache --enable-ssl --enable-proxy \ --enable-disk-cache --enable-ssl --enable-proxy \
--enable-speling --enable-rewrite --enable-so --enable-deflate" --enable-speling --enable-rewrite --enable-so --enable-deflate"
[ "$ROCKCFG_PKG_APACHE_INFO" == 1 ] && \
var_append extraconfopt " " "--enable-info"
[ "$ROCKCFG_PKG_APACHE_AUTH_DIGEST" == 1 ] && \
var_append extraconfopt " " "--enable-auth-digest"
hook_add postmake 3 "install_init apache $confdir/apache.init" hook_add postmake 3 "install_init apache $confdir/apache.init"
fi fi

+ 3
- 0
package/rene/apache/config.in

@ -41,6 +41,9 @@ then
choice ROCKCFG_PKG_APACHE_BDB $default $list choice ROCKCFG_PKG_APACHE_BDB $default $list
fi fi
bool "Enable info" ROCKCFG_PKG_APACHE_INFO 0
bool "Enable Auth Digest" ROCKCFG_PKG_APACHE_AUTH_DIGEST 0
menu_end menu_end
fi fi

Loading…
Cancel
Save