Security update to apache-httpd-2.2.9. (CVE-2008-2364 and CVE-2007-6420)

http://www.apache.org/dist/httpd/CHANGES_2.2.9

Also fix LIB_DEPENDS and use the external pcre library instead of the shipped
one.

ok dlg@, simon@, merdely@ (pre-lock)
This commit is contained in:
bernd 2008-09-02 22:05:23 +00:00
parent eea648f967
commit 8ce0f5af89
7 changed files with 185 additions and 184 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.17 2008/01/28 19:48:47 bernd Exp $
# $OpenBSD: Makefile,v 1.18 2008/09/02 22:05:23 bernd Exp $
COMMENT= apache HTTP server
V= 2.2.8
V= 2.2.9
PKGNAME= apache-httpd-${V}
DISTNAME= httpd-${V}
@ -21,6 +21,8 @@ NO_REGRESS= Yes
WANTLIB= c crypto m ssl expat apr-1 db.>=4 z
LIB_DEPENDS= pcre::devel/pcre
FLAVORS= ldap
FLAVOR?=
@ -30,7 +32,7 @@ WANTLIB+= asn1 com_err gssapi krb5 sasl2
LIB_DEPENDS+= ldap,lber::databases/openldap
LIB_DEPENDS+= aprutil-1.>=2:apr-util-*-ldap:devel/apr-util,ldap
.else
LIB_DEPENDS= aprutil-1.>=2::devel/apr-util
LIB_DEPENDS+= aprutil-1.>=2:apr-util-*-!ldap:devel/apr-util
.endif
MODULES= converters/libiconv
@ -57,7 +59,8 @@ CONFIGURE_ARGS+= --enable-layout=OpenBSD \
--enable-cache \
--enable-disk-cache \
--enable-proxy \
--enable-mods-shared=all
--enable-mods-shared=all \
--with-pcre=${LOCALBASE}
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"

View File

@ -1,5 +1,5 @@
MD5 (httpd-2.2.8.tar.gz) = OadV6w9YTCeTNjh7Mh49/A==
RMD160 (httpd-2.2.8.tar.gz) = bPz9zjF2u8P2v66/CDky9dIbfJI=
SHA1 (httpd-2.2.8.tar.gz) = J/C3y672nTkOmH+ydl3bNN64/iA=
SHA256 (httpd-2.2.8.tar.gz) = 93lV73abCvXTh5vATCkZUKDnIc5aeqIpQvBJKofAnh4=
SIZE (httpd-2.2.8.tar.gz) = 6125771
MD5 (httpd-2.2.9.tar.gz) = gNN1T8J4M4AzKW8NQe8sBA==
RMD160 (httpd-2.2.9.tar.gz) = qDnWMIKPjYEeN99O5PjTcpSub1I=
SHA1 (httpd-2.2.9.tar.gz) = UEzzmmLF5iMC992a+sTRkzqUQf4=
SHA256 (httpd-2.2.9.tar.gz) = dMkvmQWoCfsYgi8NmORXErsXSVzvrytTFcLOFYQKBKI=
SIZE (httpd-2.2.9.tar.gz) = 6396996

View File

@ -1,29 +1,30 @@
$OpenBSD: patch-Makefile_in,v 1.4 2007/01/09 09:56:57 dlg Exp $
--- Makefile.in.orig Sun Nov 13 16:33:15 2005
+++ Makefile.in Mon Jan 8 20:30:37 2007
@@ -47,12 +47,16 @@ install-conf:
if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \
$OpenBSD: patch-Makefile_in,v 1.5 2008/09/02 22:05:23 bernd Exp $
--- Makefile.in.orig Thu Jul 24 12:22:37 2008
+++ Makefile.in Thu Jul 24 12:24:01 2008
@@ -48,6 +48,8 @@ install-conf:
sed -e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
+ -e 's#@@User@@#$(rel_user)#g' \
+ -e 's#@@Group@@#$(rel_group)#g' \
-e 's#@@SSLPort@@#$(SSLPORT)#g' \
+ -e 's#@@User@@#$(rel_user)#g' \
+ -e 's#@@Group@@#$(rel_group)#g' \
-e '/@@LoadModule@@/d' \
< $$i; \
else \
sed -n -e '/@@LoadModule@@/q' \
@@ -55,6 +57,8 @@ install-conf:
-e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
+ -e 's#@@User@@#$(rel_user)#g' \
+ -e 's#@@Group@@#$(rel_group)#g' \
-e 's#@@SSLPort@@#$(SSLPORT)#g' \
+ -e 's#@@User@@#$(rel_user)#g' \
+ -e 's#@@Group@@#$(rel_group)#g' \
-e 'p' \
< $$i; \
for j in $(DSO_MODULES) "^EOL^"; do \
@@ -64,6 +68,8 @@ install-conf:
-e '/@@LoadModule@@/d' \
@@ -67,6 +71,8 @@ install-conf:
-e 's#@@ServerRoot@@#$(prefix)#g' \
-e 's#@@Port@@#$(PORT)#g' \
+ -e 's#@@User@@#$(rel_user)#g' \
+ -e 's#@@Group@@#$(rel_group)#g' \
-e 's#@@SSLPort@@#$(SSLPORT)#g' \
+ -e 's#@@User@@#$(rel_user)#g' \
+ -e 's#@@Group@@#$(rel_group)#g' \
< $$i; \
fi \
) > $(DESTDIR)$(sysconfdir)/original/$$i; \

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-configure,v 1.4 2008/01/28 19:48:47 bernd Exp $
--- configure.orig Thu Jan 10 17:54:40 2008
+++ configure Wed Jan 23 22:21:27 2008
@@ -2588,7 +2588,7 @@ do
$OpenBSD: patch-configure,v 1.5 2008/09/02 22:05:23 bernd Exp $
--- configure.orig Tue Jun 10 21:18:00 2008
+++ configure Thu Jul 24 12:22:14 2008
@@ -2816,7 +2816,7 @@ do
ap_last="${ap_cur}"
ap_cur=`eval "echo ${ap_cur}"`
done

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
--- docs/man/rotatelogs.8.orig Wed Jan 23 22:23:27 2008
+++ docs/man/rotatelogs.8 Wed Jan 23 22:24:59 2008
$OpenBSD: patch-docs_man_rotatelogs_8,v 1.4 2008/09/02 22:05:23 bernd Exp $
--- docs/man/rotatelogs.8.orig Thu Jul 24 12:24:38 2008
+++ docs/man/rotatelogs.8 Thu Jul 24 12:25:28 2008
@@ -19,21 +19,21 @@
.el .ne 3
.IP "\\$1" \\$2
..
-.TH "ROTATELOGS" 8 "2007-12-09" "Apache HTTP Server" "rotatelogs"
+.TH "ROTATELOGS2" 8 "2007-12-09" "Apache HTTP Server" "rotatelogs2"
-.TH "ROTATELOGS" 8 "2008-05-10" "Apache HTTP Server" "rotatelogs"
+.TH "ROTATELOGS2" 8 "2008-05-10" "Apache HTTP Server" "rotatelogs"
.SH NAME
-rotatelogs \- Piped logging program to rotate Apache logs
@ -15,8 +15,8 @@ $OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
.SH "SYNOPSIS"
.PP
-\fBrotatelogs\fR [ -\fBl\fR ] \fIlogfile\fR \fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
+\fBrotatelogs2\fR [ -\fBl\fR ] \fIlogfile\fR \fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
-\fBrotatelogs\fR [ -\fBl\fR ] [ -\fBf\fR ] \fIlogfile\fR \fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
+\fBrotatelogs2\fR [ -\fBl\fR ] [ -\fBf\fR ] \fIlogfile\fR \fIrotationtime\fR|\fIfilesize\fRM [ \fIoffset\fR ]
.SH "SUMMARY"
@ -27,7 +27,16 @@ $OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
.SH "OPTIONS"
@@ -59,7 +59,7 @@ The number of minutes offset from UTC\&. If omitted, z
@@ -44,7 +44,7 @@ rotatelogs is a simple program for use in conjunction
Causes the use of local time rather than GMT as the base for the interval or for strftime(3) formatting with size-based rotation\&. Note that using -l in an environment which changes the GMT offset (such as for BST or DST) can lead to unpredictable results!
.TP
-f
-Causes the logfile to be opened immediately, as soon as rotatelogs starts, instead of waiting for the first logfile entry to be read (for non-busy sites, there may be a substantial delay between when the server is started and when the first request is handled, meaning that the associated logfile does not "exist" until then, which causes problems from some automated logging tools)\&. \fIAvailable in version 2\&.2\&.9 and later\&.\fR
+Causes the logfile to be opened immediately, as soon as rotatelogs2 starts, instead of waiting for the first logfile entry to be read (for non-busy sites, there may be a substantial delay between when the server is started and when the first request is handled, meaning that the associated logfile does not "exist" until then, which causes problems from some automated logging tools)\&. \fIAvailable in version 2\&.2\&.9 and later\&.\fR
.TP
\fIlogfile\fR
The path plus basename of the logfile\&. If \fIlogfile\fR includes any '%' characters, it is treated as a format string for strftime(3)\&. Otherwise, the suffix \fI\&.nnnnnnnnnn\fR is automatically added and is the time in seconds\&. Both formats compute the start time from the beginning of the current period\&. For example, if a rotation time of 86400 is specified, the hour, minute, and second fields created from the strftime(3) format will all be zero, referring to the beginning of the current 24-hour period (midnight)\&.
@@ -62,7 +62,7 @@ The number of minutes offset from UTC\&. If omitted, z
.nf
@ -36,7 +45,7 @@ $OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
.fi
@@ -68,7 +68,7 @@ This creates the files /var/logs/logfile\&.nnnn where
@@ -71,7 +71,7 @@ This creates the files /var/logs/logfile\&.nnnn where
.nf
@ -45,7 +54,7 @@ $OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
.fi
@@ -77,7 +77,7 @@ This creates the files /var/logs/logfile\&.yyyy\&.mm\&
@@ -80,7 +80,7 @@ This creates the files /var/logs/logfile\&.yyyy\&.mm\&
.nf
@ -54,7 +63,7 @@ $OpenBSD: patch-docs_man_rotatelogs_8,v 1.3 2008/01/28 19:48:47 bernd Exp $
.fi
@@ -86,7 +86,7 @@ This configuration will rotate the logfile whenever it
@@ -89,7 +89,7 @@ This configuration will rotate the logfile whenever it
.nf

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-support_rotatelogs_c,v 1.3 2008/01/28 19:48:47 bernd Exp $
--- support/rotatelogs.c.orig Wed Jan 23 22:25:37 2008
+++ support/rotatelogs.c Wed Jan 23 22:25:43 2008
@@ -83,7 +83,7 @@ static void usage(const char *argv0, const char *reaso
$OpenBSD: patch-support_rotatelogs_c,v 1.4 2008/09/02 22:05:23 bernd Exp $
--- support/rotatelogs.c.orig Fri May 9 15:43:24 2008
+++ support/rotatelogs.c Thu Jul 24 12:22:15 2008
@@ -86,7 +86,7 @@ static void usage(const char *argv0, const char *reaso
"or \n\nTransferLog \"|%s /some/where 5M\"\n\n", argv0);
#endif
fprintf(stderr,

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.12 2008/01/28 19:48:47 bernd Exp $
@comment $OpenBSD: PLIST,v 1.13 2008/09/02 22:05:23 bernd Exp $
@newgroup _apache2:576
@newuser _apache2:576:576:daemon:Apache HTTP Server:/var/empty:/sbin/nologin
include/apache2/
@ -120,21 +120,21 @@ lib/apache2/mod_vhost_alias.so
@man man/man8/logresolve2.8
@man man/man8/rotatelogs2.8
@man man/man8/suexec2.8
sbin/ab
@bin sbin/ab
sbin/apachectl2
sbin/apxs2
sbin/checkgid
@bin sbin/checkgid
sbin/dbmmanage2
sbin/envvars
sbin/envvars-std
sbin/htcacheclean
sbin/htdbm
sbin/htdigest2
sbin/htpasswd2
sbin/httpd2
sbin/httxt2dbm
sbin/logresolve2
sbin/rotatelogs2
@bin sbin/htcacheclean
@bin sbin/htdbm
@bin sbin/htdigest2
@bin sbin/htpasswd2
@bin sbin/httpd2
@bin sbin/httxt2dbm
@bin sbin/logresolve2
@bin sbin/rotatelogs2
share/apache2/
share/apache2/build/
share/apache2/build/config.nice
@ -152,8 +152,9 @@ share/doc/apache2/bind.html
share/doc/apache2/bind.html.de
share/doc/apache2/bind.html.en
share/doc/apache2/bind.html.fr
share/doc/apache2/bind.html.ja.euc-jp
share/doc/apache2/bind.html.ja.utf8
share/doc/apache2/bind.html.ko.euc-kr
share/doc/apache2/bind.html.tr.utf8
share/doc/apache2/caching.html
share/doc/apache2/caching.html.en
share/doc/apache2/caching.html.fr
@ -161,18 +162,19 @@ share/doc/apache2/configuring.html
share/doc/apache2/configuring.html.de
share/doc/apache2/configuring.html.en
share/doc/apache2/configuring.html.fr
share/doc/apache2/configuring.html.ja.euc-jp
share/doc/apache2/configuring.html.ja.utf8
share/doc/apache2/configuring.html.ko.euc-kr
share/doc/apache2/configuring.html.tr.utf8
share/doc/apache2/content-negotiation.html
share/doc/apache2/content-negotiation.html.en
share/doc/apache2/content-negotiation.html.fr
share/doc/apache2/content-negotiation.html.ja.euc-jp
share/doc/apache2/content-negotiation.html.ja.utf8
share/doc/apache2/content-negotiation.html.ko.euc-kr
share/doc/apache2/convenience.map
share/doc/apache2/custom-error.html
share/doc/apache2/custom-error.html.en
share/doc/apache2/custom-error.html.es
share/doc/apache2/custom-error.html.ja.euc-jp
share/doc/apache2/custom-error.html.ja.utf8
share/doc/apache2/custom-error.html.ko.euc-kr
share/doc/apache2/developer/
share/doc/apache2/developer/API.html
@ -189,31 +191,32 @@ share/doc/apache2/developer/index.html
share/doc/apache2/developer/index.html.en
share/doc/apache2/developer/modules.html
share/doc/apache2/developer/modules.html.en
share/doc/apache2/developer/modules.html.ja.euc-jp
share/doc/apache2/developer/modules.html.ja.utf8
share/doc/apache2/developer/request.html
share/doc/apache2/developer/request.html.en
share/doc/apache2/developer/thread_safety.html
share/doc/apache2/developer/thread_safety.html.en
share/doc/apache2/dns-caveats.html
share/doc/apache2/dns-caveats.html.en
share/doc/apache2/dns-caveats.html.ja.euc-jp
share/doc/apache2/dns-caveats.html.ja.utf8
share/doc/apache2/dns-caveats.html.ko.euc-kr
share/doc/apache2/dso.html
share/doc/apache2/dso.html.en
share/doc/apache2/dso.html.ja.euc-jp
share/doc/apache2/dso.html.ja.utf8
share/doc/apache2/dso.html.ko.euc-kr
share/doc/apache2/env.html
share/doc/apache2/env.html.en
share/doc/apache2/env.html.ja.euc-jp
share/doc/apache2/env.html.ja.utf8
share/doc/apache2/env.html.ko.euc-kr
share/doc/apache2/faq/
share/doc/apache2/faq/index.html
share/doc/apache2/faq/index.html.en
share/doc/apache2/faq/index.html.tr.utf8
share/doc/apache2/filter.html
share/doc/apache2/filter.html.en
share/doc/apache2/filter.html.es
share/doc/apache2/filter.html.fr
share/doc/apache2/filter.html.ja.euc-jp
share/doc/apache2/filter.html.ja.utf8
share/doc/apache2/filter.html.ko.euc-kr
share/doc/apache2/glossary.html
share/doc/apache2/glossary.html.de
@ -221,11 +224,12 @@ share/doc/apache2/glossary.html.en
share/doc/apache2/glossary.html.es
share/doc/apache2/glossary.html.fr
share/doc/apache2/glossary.html.ko.euc-kr
share/doc/apache2/glossary.html.tr.utf8
share/doc/apache2/handler.html
share/doc/apache2/handler.html.en
share/doc/apache2/handler.html.es
share/doc/apache2/handler.html.fr
share/doc/apache2/handler.html.ja.euc-jp
share/doc/apache2/handler.html.ja.utf8
share/doc/apache2/handler.html.ko.euc-kr
share/doc/apache2/handler.html.ru.koi8-r
share/doc/apache2/howto/
@ -233,28 +237,28 @@ share/doc/apache2/howto/access.html
share/doc/apache2/howto/access.html.en
share/doc/apache2/howto/auth.html
share/doc/apache2/howto/auth.html.en
share/doc/apache2/howto/auth.html.ja.euc-jp
share/doc/apache2/howto/auth.html.ja.utf8
share/doc/apache2/howto/auth.html.ko.euc-kr
share/doc/apache2/howto/cgi.html
share/doc/apache2/howto/cgi.html.en
share/doc/apache2/howto/cgi.html.ja.euc-jp
share/doc/apache2/howto/cgi.html.ja.utf8
share/doc/apache2/howto/cgi.html.ko.euc-kr
share/doc/apache2/howto/htaccess.html
share/doc/apache2/howto/htaccess.html.en
share/doc/apache2/howto/htaccess.html.ja.euc-jp
share/doc/apache2/howto/htaccess.html.ja.utf8
share/doc/apache2/howto/htaccess.html.ko.euc-kr
share/doc/apache2/howto/htaccess.html.pt-br
share/doc/apache2/howto/index.html
share/doc/apache2/howto/index.html.en
share/doc/apache2/howto/index.html.ja.euc-jp
share/doc/apache2/howto/index.html.ja.utf8
share/doc/apache2/howto/index.html.ko.euc-kr
share/doc/apache2/howto/public_html.html
share/doc/apache2/howto/public_html.html.en
share/doc/apache2/howto/public_html.html.ja.euc-jp
share/doc/apache2/howto/public_html.html.ja.utf8
share/doc/apache2/howto/public_html.html.ko.euc-kr
share/doc/apache2/howto/ssi.html
share/doc/apache2/howto/ssi.html.en
share/doc/apache2/howto/ssi.html.ja.euc-jp
share/doc/apache2/howto/ssi.html.ja.utf8
share/doc/apache2/howto/ssi.html.ko.euc-kr
share/doc/apache2/images/
share/doc/apache2/images/apache_header.gif
@ -291,29 +295,32 @@ share/doc/apache2/index.html.de
share/doc/apache2/index.html.en
share/doc/apache2/index.html.es
share/doc/apache2/index.html.fr
share/doc/apache2/index.html.ja.euc-jp
share/doc/apache2/index.html.ja.utf8
share/doc/apache2/index.html.ko.euc-kr
share/doc/apache2/index.html.pt-br
share/doc/apache2/index.html.tr.utf8
share/doc/apache2/install.html
share/doc/apache2/install.html.de
share/doc/apache2/install.html.en
share/doc/apache2/install.html.es
share/doc/apache2/install.html.fr
share/doc/apache2/install.html.ja.euc-jp
share/doc/apache2/install.html.ja.utf8
share/doc/apache2/install.html.ko.euc-kr
share/doc/apache2/install.html.tr.utf8
share/doc/apache2/invoking.html
share/doc/apache2/invoking.html.de
share/doc/apache2/invoking.html.en
share/doc/apache2/invoking.html.es
share/doc/apache2/invoking.html.fr
share/doc/apache2/invoking.html.ja.euc-jp
share/doc/apache2/invoking.html.ja.utf8
share/doc/apache2/invoking.html.ko.euc-kr
share/doc/apache2/invoking.html.ru.koi8-r
share/doc/apache2/invoking.html.tr.utf8
share/doc/apache2/license.html
share/doc/apache2/license.html.en
share/doc/apache2/logs.html
share/doc/apache2/logs.html.en
share/doc/apache2/logs.html.ja.euc-jp
share/doc/apache2/logs.html.ja.utf8
share/doc/apache2/logs.html.ko.euc-kr
share/doc/apache2/misc/
share/doc/apache2/misc/index.html
@ -342,42 +349,46 @@ share/doc/apache2/mod/beos.html.ko.euc-kr
share/doc/apache2/mod/core.html
share/doc/apache2/mod/core.html.de
share/doc/apache2/mod/core.html.en
share/doc/apache2/mod/core.html.ja.euc-jp
share/doc/apache2/mod/core.html.ja.utf8
share/doc/apache2/mod/core.html.tr.utf8
share/doc/apache2/mod/directive-dict.html
share/doc/apache2/mod/directive-dict.html.en
share/doc/apache2/mod/directive-dict.html.ja.euc-jp
share/doc/apache2/mod/directive-dict.html.ja.utf8
share/doc/apache2/mod/directive-dict.html.ko.euc-kr
share/doc/apache2/mod/directive-dict.html.tr.utf8
share/doc/apache2/mod/directives.html
share/doc/apache2/mod/directives.html.de
share/doc/apache2/mod/directives.html.en
share/doc/apache2/mod/directives.html.es
share/doc/apache2/mod/directives.html.ja.euc-jp
share/doc/apache2/mod/directives.html.ja.utf8
share/doc/apache2/mod/directives.html.ko.euc-kr
share/doc/apache2/mod/directives.html.ru.koi8-r
share/doc/apache2/mod/directives.html.tr.utf8
share/doc/apache2/mod/event.html
share/doc/apache2/mod/event.html.en
share/doc/apache2/mod/index.html
share/doc/apache2/mod/index.html.de
share/doc/apache2/mod/index.html.en
share/doc/apache2/mod/index.html.es
share/doc/apache2/mod/index.html.ja.euc-jp
share/doc/apache2/mod/index.html.ja.utf8
share/doc/apache2/mod/index.html.ko.euc-kr
share/doc/apache2/mod/index.html.tr.utf8
share/doc/apache2/mod/mod_actions.html
share/doc/apache2/mod/mod_actions.html.de
share/doc/apache2/mod/mod_actions.html.en
share/doc/apache2/mod/mod_actions.html.ja.euc-jp
share/doc/apache2/mod/mod_actions.html.ja.utf8
share/doc/apache2/mod/mod_actions.html.ko.euc-kr
share/doc/apache2/mod/mod_alias.html
share/doc/apache2/mod/mod_alias.html.en
share/doc/apache2/mod/mod_alias.html.ja.euc-jp
share/doc/apache2/mod/mod_alias.html.ja.utf8
share/doc/apache2/mod/mod_alias.html.ko.euc-kr
share/doc/apache2/mod/mod_asis.html
share/doc/apache2/mod/mod_asis.html.en
share/doc/apache2/mod/mod_asis.html.ja.euc-jp
share/doc/apache2/mod/mod_asis.html.ja.utf8
share/doc/apache2/mod/mod_asis.html.ko.euc-kr
share/doc/apache2/mod/mod_auth_basic.html
share/doc/apache2/mod/mod_auth_basic.html.en
share/doc/apache2/mod/mod_auth_basic.html.ja.euc-jp
share/doc/apache2/mod/mod_auth_basic.html.ja.utf8
share/doc/apache2/mod/mod_auth_basic.html.ko.euc-kr
share/doc/apache2/mod/mod_auth_digest.html
share/doc/apache2/mod/mod_auth_digest.html.en
@ -386,21 +397,21 @@ share/doc/apache2/mod/mod_authn_alias.html
share/doc/apache2/mod/mod_authn_alias.html.en
share/doc/apache2/mod/mod_authn_anon.html
share/doc/apache2/mod/mod_authn_anon.html.en
share/doc/apache2/mod/mod_authn_anon.html.ja.euc-jp
share/doc/apache2/mod/mod_authn_anon.html.ja.utf8
share/doc/apache2/mod/mod_authn_anon.html.ko.euc-kr
share/doc/apache2/mod/mod_authn_dbd.html
share/doc/apache2/mod/mod_authn_dbd.html.en
share/doc/apache2/mod/mod_authn_dbm.html
share/doc/apache2/mod/mod_authn_dbm.html.en
share/doc/apache2/mod/mod_authn_dbm.html.ja.euc-jp
share/doc/apache2/mod/mod_authn_dbm.html.ja.utf8
share/doc/apache2/mod/mod_authn_dbm.html.ko.euc-kr
share/doc/apache2/mod/mod_authn_default.html
share/doc/apache2/mod/mod_authn_default.html.en
share/doc/apache2/mod/mod_authn_default.html.ja.euc-jp
share/doc/apache2/mod/mod_authn_default.html.ja.utf8
share/doc/apache2/mod/mod_authn_default.html.ko.euc-kr
share/doc/apache2/mod/mod_authn_file.html
share/doc/apache2/mod/mod_authn_file.html.en
share/doc/apache2/mod/mod_authn_file.html.ja.euc-jp
share/doc/apache2/mod/mod_authn_file.html.ja.utf8
share/doc/apache2/mod/mod_authn_file.html.ko.euc-kr
share/doc/apache2/mod/mod_authnz_ldap.html
share/doc/apache2/mod/mod_authnz_ldap.html.en
@ -409,92 +420,92 @@ share/doc/apache2/mod/mod_authz_dbm.html.en
share/doc/apache2/mod/mod_authz_dbm.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_default.html
share/doc/apache2/mod/mod_authz_default.html.en
share/doc/apache2/mod/mod_authz_default.html.ja.euc-jp
share/doc/apache2/mod/mod_authz_default.html.ja.utf8
share/doc/apache2/mod/mod_authz_default.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_groupfile.html
share/doc/apache2/mod/mod_authz_groupfile.html.en
share/doc/apache2/mod/mod_authz_groupfile.html.ja.euc-jp
share/doc/apache2/mod/mod_authz_groupfile.html.ja.utf8
share/doc/apache2/mod/mod_authz_groupfile.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_host.html
share/doc/apache2/mod/mod_authz_host.html.en
share/doc/apache2/mod/mod_authz_host.html.ja.euc-jp
share/doc/apache2/mod/mod_authz_host.html.ja.utf8
share/doc/apache2/mod/mod_authz_host.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_owner.html
share/doc/apache2/mod/mod_authz_owner.html.en
share/doc/apache2/mod/mod_authz_owner.html.ja.euc-jp
share/doc/apache2/mod/mod_authz_owner.html.ja.utf8
share/doc/apache2/mod/mod_authz_owner.html.ko.euc-kr
share/doc/apache2/mod/mod_authz_user.html
share/doc/apache2/mod/mod_authz_user.html.en
share/doc/apache2/mod/mod_authz_user.html.ja.euc-jp
share/doc/apache2/mod/mod_authz_user.html.ja.utf8
share/doc/apache2/mod/mod_authz_user.html.ko.euc-kr
share/doc/apache2/mod/mod_autoindex.html
share/doc/apache2/mod/mod_autoindex.html.en
share/doc/apache2/mod/mod_autoindex.html.ja.euc-jp
share/doc/apache2/mod/mod_autoindex.html.ja.utf8
share/doc/apache2/mod/mod_autoindex.html.ko.euc-kr
share/doc/apache2/mod/mod_cache.html
share/doc/apache2/mod/mod_cache.html.en
share/doc/apache2/mod/mod_cache.html.ja.euc-jp
share/doc/apache2/mod/mod_cache.html.ja.utf8
share/doc/apache2/mod/mod_cache.html.ko.euc-kr
share/doc/apache2/mod/mod_cern_meta.html
share/doc/apache2/mod/mod_cern_meta.html.en
share/doc/apache2/mod/mod_cern_meta.html.ko.euc-kr
share/doc/apache2/mod/mod_cgi.html
share/doc/apache2/mod/mod_cgi.html.en
share/doc/apache2/mod/mod_cgi.html.ja.euc-jp
share/doc/apache2/mod/mod_cgi.html.ja.utf8
share/doc/apache2/mod/mod_cgi.html.ko.euc-kr
share/doc/apache2/mod/mod_cgid.html
share/doc/apache2/mod/mod_cgid.html.en
share/doc/apache2/mod/mod_cgid.html.ja.euc-jp
share/doc/apache2/mod/mod_cgid.html.ja.utf8
share/doc/apache2/mod/mod_cgid.html.ko.euc-kr
share/doc/apache2/mod/mod_charset_lite.html
share/doc/apache2/mod/mod_charset_lite.html.en
share/doc/apache2/mod/mod_charset_lite.html.ko.euc-kr
share/doc/apache2/mod/mod_dav.html
share/doc/apache2/mod/mod_dav.html.en
share/doc/apache2/mod/mod_dav.html.ja.euc-jp
share/doc/apache2/mod/mod_dav.html.ja.utf8
share/doc/apache2/mod/mod_dav.html.ko.euc-kr
share/doc/apache2/mod/mod_dav_fs.html
share/doc/apache2/mod/mod_dav_fs.html.en
share/doc/apache2/mod/mod_dav_fs.html.ja.euc-jp
share/doc/apache2/mod/mod_dav_fs.html.ja.utf8
share/doc/apache2/mod/mod_dav_fs.html.ko.euc-kr
share/doc/apache2/mod/mod_dav_lock.html
share/doc/apache2/mod/mod_dav_lock.html.en
share/doc/apache2/mod/mod_dav_lock.html.ja.euc-jp
share/doc/apache2/mod/mod_dav_lock.html.ja.utf8
share/doc/apache2/mod/mod_dbd.html
share/doc/apache2/mod/mod_dbd.html.en
share/doc/apache2/mod/mod_deflate.html
share/doc/apache2/mod/mod_deflate.html.en
share/doc/apache2/mod/mod_deflate.html.ja.euc-jp
share/doc/apache2/mod/mod_deflate.html.ja.utf8
share/doc/apache2/mod/mod_deflate.html.ko.euc-kr
share/doc/apache2/mod/mod_dir.html
share/doc/apache2/mod/mod_dir.html.en
share/doc/apache2/mod/mod_dir.html.ja.euc-jp
share/doc/apache2/mod/mod_dir.html.ja.utf8
share/doc/apache2/mod/mod_dir.html.ko.euc-kr
share/doc/apache2/mod/mod_disk_cache.html
share/doc/apache2/mod/mod_disk_cache.html.en
share/doc/apache2/mod/mod_disk_cache.html.ja.euc-jp
share/doc/apache2/mod/mod_disk_cache.html.ja.utf8
share/doc/apache2/mod/mod_disk_cache.html.ko.euc-kr
share/doc/apache2/mod/mod_dumpio.html
share/doc/apache2/mod/mod_dumpio.html.en
share/doc/apache2/mod/mod_dumpio.html.ja.euc-jp
share/doc/apache2/mod/mod_dumpio.html.ja.utf8
share/doc/apache2/mod/mod_echo.html
share/doc/apache2/mod/mod_echo.html.en
share/doc/apache2/mod/mod_echo.html.ja.euc-jp
share/doc/apache2/mod/mod_echo.html.ja.utf8
share/doc/apache2/mod/mod_echo.html.ko.euc-kr
share/doc/apache2/mod/mod_env.html
share/doc/apache2/mod/mod_env.html.en
share/doc/apache2/mod/mod_env.html.ja.euc-jp
share/doc/apache2/mod/mod_env.html.ja.utf8
share/doc/apache2/mod/mod_env.html.ko.euc-kr
share/doc/apache2/mod/mod_example.html
share/doc/apache2/mod/mod_example.html.en
share/doc/apache2/mod/mod_example.html.ko.euc-kr
share/doc/apache2/mod/mod_expires.html
share/doc/apache2/mod/mod_expires.html.en
share/doc/apache2/mod/mod_expires.html.ja.euc-jp
share/doc/apache2/mod/mod_expires.html.ja.utf8
share/doc/apache2/mod/mod_expires.html.ko.euc-kr
share/doc/apache2/mod/mod_ext_filter.html
share/doc/apache2/mod/mod_ext_filter.html.en
share/doc/apache2/mod/mod_ext_filter.html.ja.euc-jp
share/doc/apache2/mod/mod_ext_filter.html.ja.utf8
share/doc/apache2/mod/mod_ext_filter.html.ko.euc-kr
share/doc/apache2/mod/mod_file_cache.html
share/doc/apache2/mod/mod_file_cache.html.en
@ -503,20 +514,21 @@ share/doc/apache2/mod/mod_filter.html
share/doc/apache2/mod/mod_filter.html.en
share/doc/apache2/mod/mod_headers.html
share/doc/apache2/mod/mod_headers.html.en
share/doc/apache2/mod/mod_headers.html.ja.euc-jp
share/doc/apache2/mod/mod_headers.html.ja.utf8
share/doc/apache2/mod/mod_headers.html.ko.euc-kr
share/doc/apache2/mod/mod_ident.html
share/doc/apache2/mod/mod_ident.html.en
share/doc/apache2/mod/mod_ident.html.ja.utf8
share/doc/apache2/mod/mod_ident.html.ko.euc-kr
share/doc/apache2/mod/mod_imagemap.html
share/doc/apache2/mod/mod_imagemap.html.en
share/doc/apache2/mod/mod_imagemap.html.ko.euc-kr
share/doc/apache2/mod/mod_include.html
share/doc/apache2/mod/mod_include.html.en
share/doc/apache2/mod/mod_include.html.ja.euc-jp
share/doc/apache2/mod/mod_include.html.ja.utf8
share/doc/apache2/mod/mod_info.html
share/doc/apache2/mod/mod_info.html.en
share/doc/apache2/mod/mod_info.html.ja.euc-jp
share/doc/apache2/mod/mod_info.html.ja.utf8
share/doc/apache2/mod/mod_info.html.ko.euc-kr
share/doc/apache2/mod/mod_isapi.html
share/doc/apache2/mod/mod_isapi.html.en
@ -525,40 +537,41 @@ share/doc/apache2/mod/mod_ldap.html
share/doc/apache2/mod/mod_ldap.html.en
share/doc/apache2/mod/mod_log_config.html
share/doc/apache2/mod/mod_log_config.html.en
share/doc/apache2/mod/mod_log_config.html.ja.euc-jp
share/doc/apache2/mod/mod_log_config.html.ja.utf8
share/doc/apache2/mod/mod_log_config.html.ko.euc-kr
share/doc/apache2/mod/mod_log_forensic.html
share/doc/apache2/mod/mod_log_forensic.html.en
share/doc/apache2/mod/mod_log_forensic.html.ja.euc-jp
share/doc/apache2/mod/mod_log_forensic.html.ja.utf8
share/doc/apache2/mod/mod_logio.html
share/doc/apache2/mod/mod_logio.html.en
share/doc/apache2/mod/mod_logio.html.ja.euc-jp
share/doc/apache2/mod/mod_logio.html.ja.utf8
share/doc/apache2/mod/mod_logio.html.ko.euc-kr
share/doc/apache2/mod/mod_mem_cache.html
share/doc/apache2/mod/mod_mem_cache.html.en
share/doc/apache2/mod/mod_mem_cache.html.ja.euc-jp
share/doc/apache2/mod/mod_mem_cache.html.ja.utf8
share/doc/apache2/mod/mod_mem_cache.html.ko.euc-kr
share/doc/apache2/mod/mod_mime.html
share/doc/apache2/mod/mod_mime.html.en
share/doc/apache2/mod/mod_mime.html.ja.euc-jp
share/doc/apache2/mod/mod_mime.html.ja.utf8
share/doc/apache2/mod/mod_mime_magic.html
share/doc/apache2/mod/mod_mime_magic.html.en
share/doc/apache2/mod/mod_negotiation.html
share/doc/apache2/mod/mod_negotiation.html.en
share/doc/apache2/mod/mod_negotiation.html.ja.euc-jp
share/doc/apache2/mod/mod_negotiation.html.ja.utf8
share/doc/apache2/mod/mod_nw_ssl.html
share/doc/apache2/mod/mod_nw_ssl.html.en
share/doc/apache2/mod/mod_proxy.html
share/doc/apache2/mod/mod_proxy.html.en
share/doc/apache2/mod/mod_proxy.html.ja.euc-jp
share/doc/apache2/mod/mod_proxy.html.ja.utf8
share/doc/apache2/mod/mod_proxy_ajp.html
share/doc/apache2/mod/mod_proxy_ajp.html.en
share/doc/apache2/mod/mod_proxy_ajp.html.ja.euc-jp
share/doc/apache2/mod/mod_proxy_ajp.html.ja.utf8
share/doc/apache2/mod/mod_proxy_balancer.html
share/doc/apache2/mod/mod_proxy_balancer.html.en
share/doc/apache2/mod/mod_proxy_balancer.html.ja.euc-jp
share/doc/apache2/mod/mod_proxy_balancer.html.ja.utf8
share/doc/apache2/mod/mod_proxy_connect.html
share/doc/apache2/mod/mod_proxy_connect.html.en
share/doc/apache2/mod/mod_proxy_connect.html.ja.utf8
share/doc/apache2/mod/mod_proxy_ftp.html
share/doc/apache2/mod/mod_proxy_ftp.html.en
share/doc/apache2/mod/mod_proxy_http.html
@ -567,87 +580,91 @@ share/doc/apache2/mod/mod_rewrite.html
share/doc/apache2/mod/mod_rewrite.html.en
share/doc/apache2/mod/mod_setenvif.html
share/doc/apache2/mod/mod_setenvif.html.en
share/doc/apache2/mod/mod_setenvif.html.ja.euc-jp
share/doc/apache2/mod/mod_setenvif.html.ja.utf8
share/doc/apache2/mod/mod_setenvif.html.ko.euc-kr
share/doc/apache2/mod/mod_so.html
share/doc/apache2/mod/mod_so.html.en
share/doc/apache2/mod/mod_so.html.ja.euc-jp
share/doc/apache2/mod/mod_so.html.ja.utf8
share/doc/apache2/mod/mod_so.html.ko.euc-kr
share/doc/apache2/mod/mod_speling.html
share/doc/apache2/mod/mod_speling.html.en
share/doc/apache2/mod/mod_speling.html.ja.euc-jp
share/doc/apache2/mod/mod_speling.html.ja.utf8
share/doc/apache2/mod/mod_speling.html.ko.euc-kr
share/doc/apache2/mod/mod_ssl.html
share/doc/apache2/mod/mod_ssl.html.en
share/doc/apache2/mod/mod_status.html
share/doc/apache2/mod/mod_status.html.en
share/doc/apache2/mod/mod_status.html.ja.euc-jp
share/doc/apache2/mod/mod_status.html.ja.utf8
share/doc/apache2/mod/mod_status.html.ko.euc-kr
share/doc/apache2/mod/mod_substitute.html
share/doc/apache2/mod/mod_substitute.html.en
share/doc/apache2/mod/mod_suexec.html
share/doc/apache2/mod/mod_suexec.html.en
share/doc/apache2/mod/mod_suexec.html.ja.euc-jp
share/doc/apache2/mod/mod_suexec.html.ja.utf8
share/doc/apache2/mod/mod_suexec.html.ko.euc-kr
share/doc/apache2/mod/mod_unique_id.html
share/doc/apache2/mod/mod_unique_id.html.en
share/doc/apache2/mod/mod_unique_id.html.ja.euc-jp
share/doc/apache2/mod/mod_unique_id.html.ja.utf8
share/doc/apache2/mod/mod_unique_id.html.ko.euc-kr
share/doc/apache2/mod/mod_userdir.html
share/doc/apache2/mod/mod_userdir.html.en
share/doc/apache2/mod/mod_userdir.html.ja.euc-jp
share/doc/apache2/mod/mod_userdir.html.ja.utf8
share/doc/apache2/mod/mod_userdir.html.ko.euc-kr
share/doc/apache2/mod/mod_usertrack.html
share/doc/apache2/mod/mod_usertrack.html.en
share/doc/apache2/mod/mod_version.html
share/doc/apache2/mod/mod_version.html.en
share/doc/apache2/mod/mod_version.html.ja.euc-jp
share/doc/apache2/mod/mod_version.html.ja.utf8
share/doc/apache2/mod/mod_version.html.ko.euc-kr
share/doc/apache2/mod/mod_vhost_alias.html
share/doc/apache2/mod/mod_vhost_alias.html.en
share/doc/apache2/mod/module-dict.html
share/doc/apache2/mod/module-dict.html.en
share/doc/apache2/mod/module-dict.html.ja.euc-jp
share/doc/apache2/mod/module-dict.html.ja.utf8
share/doc/apache2/mod/module-dict.html.ko.euc-kr
share/doc/apache2/mod/module-dict.html.tr.utf8
share/doc/apache2/mod/mpm_common.html
share/doc/apache2/mod/mpm_common.html.de
share/doc/apache2/mod/mpm_common.html.en
share/doc/apache2/mod/mpm_common.html.ja.euc-jp
share/doc/apache2/mod/mpm_common.html.ja.utf8
share/doc/apache2/mod/mpm_common.html.tr.utf8
share/doc/apache2/mod/mpm_netware.html
share/doc/apache2/mod/mpm_netware.html.en
share/doc/apache2/mod/mpm_winnt.html
share/doc/apache2/mod/mpm_winnt.html.de
share/doc/apache2/mod/mpm_winnt.html.en
share/doc/apache2/mod/mpm_winnt.html.ja.euc-jp
share/doc/apache2/mod/mpm_winnt.html.ja.utf8
share/doc/apache2/mod/mpmt_os2.html
share/doc/apache2/mod/mpmt_os2.html.en
share/doc/apache2/mod/prefork.html
share/doc/apache2/mod/prefork.html.de
share/doc/apache2/mod/prefork.html.en
share/doc/apache2/mod/prefork.html.ja.euc-jp
share/doc/apache2/mod/prefork.html.ja.utf8
share/doc/apache2/mod/quickreference.html
share/doc/apache2/mod/quickreference.html.de
share/doc/apache2/mod/quickreference.html.en
share/doc/apache2/mod/quickreference.html.es
share/doc/apache2/mod/quickreference.html.ja.euc-jp
share/doc/apache2/mod/quickreference.html.ja.utf8
share/doc/apache2/mod/quickreference.html.ko.euc-kr
share/doc/apache2/mod/quickreference.html.ru.koi8-r
share/doc/apache2/mod/quickreference.html.tr.utf8
share/doc/apache2/mod/worker.html
share/doc/apache2/mod/worker.html.de
share/doc/apache2/mod/worker.html.en
share/doc/apache2/mod/worker.html.ja.euc-jp
share/doc/apache2/mod/worker.html.ja.utf8
share/doc/apache2/mpm.html
share/doc/apache2/mpm.html.de
share/doc/apache2/mpm.html.en
share/doc/apache2/mpm.html.es
share/doc/apache2/mpm.html.fr
share/doc/apache2/mpm.html.ja.euc-jp
share/doc/apache2/mpm.html.ja.utf8
share/doc/apache2/mpm.html.ko.euc-kr
share/doc/apache2/mpm.html.tr.utf8
share/doc/apache2/new_features_2_0.html
share/doc/apache2/new_features_2_0.html.de
share/doc/apache2/new_features_2_0.html.en
share/doc/apache2/new_features_2_0.html.fr
share/doc/apache2/new_features_2_0.html.ja.euc-jp
share/doc/apache2/new_features_2_0.html.ja.utf8
share/doc/apache2/new_features_2_0.html.ko.euc-kr
share/doc/apache2/new_features_2_0.html.pt-br
share/doc/apache2/new_features_2_0.html.ru.koi8-r
@ -712,6 +729,7 @@ share/doc/apache2/programs/index.html.en
share/doc/apache2/programs/index.html.es
share/doc/apache2/programs/index.html.ko.euc-kr
share/doc/apache2/programs/index.html.ru.koi8-r
share/doc/apache2/programs/index.html.tr.utf8
share/doc/apache2/programs/logresolve.html
share/doc/apache2/programs/logresolve.html.en
share/doc/apache2/programs/logresolve.html.ko.euc-kr
@ -727,6 +745,8 @@ share/doc/apache2/programs/suexec.html.ko.euc-kr
share/doc/apache2/rewrite/
share/doc/apache2/rewrite/index.html
share/doc/apache2/rewrite/index.html.en
share/doc/apache2/rewrite/rewrite_flags.html
share/doc/apache2/rewrite/rewrite_flags.html.en
share/doc/apache2/rewrite/rewrite_guide.html
share/doc/apache2/rewrite/rewrite_guide.html.en
share/doc/apache2/rewrite/rewrite_guide_advanced.html
@ -738,22 +758,24 @@ share/doc/apache2/rewrite/rewrite_tech.html.en
share/doc/apache2/sections.html
share/doc/apache2/sections.html.en
share/doc/apache2/sections.html.fr
share/doc/apache2/sections.html.ja.euc-jp
share/doc/apache2/sections.html.ja.utf8
share/doc/apache2/sections.html.ko.euc-kr
share/doc/apache2/sections.html.tr.utf8
share/doc/apache2/server-wide.html
share/doc/apache2/server-wide.html.en
share/doc/apache2/server-wide.html.ja.euc-jp
share/doc/apache2/server-wide.html.ja.utf8
share/doc/apache2/server-wide.html.ko.euc-kr
share/doc/apache2/sitemap.html
share/doc/apache2/sitemap.html.de
share/doc/apache2/sitemap.html.en
share/doc/apache2/sitemap.html.es
share/doc/apache2/sitemap.html.ja.euc-jp
share/doc/apache2/sitemap.html.ja.utf8
share/doc/apache2/sitemap.html.ko.euc-kr
share/doc/apache2/sitemap.html.tr.utf8
share/doc/apache2/ssl/
share/doc/apache2/ssl/index.html
share/doc/apache2/ssl/index.html.en
share/doc/apache2/ssl/index.html.ja.euc-jp
share/doc/apache2/ssl/index.html.ja.utf8
share/doc/apache2/ssl/ssl_compat.html
share/doc/apache2/ssl/ssl_compat.html.en
share/doc/apache2/ssl/ssl_faq.html
@ -762,14 +784,15 @@ share/doc/apache2/ssl/ssl_howto.html
share/doc/apache2/ssl/ssl_howto.html.en
share/doc/apache2/ssl/ssl_intro.html
share/doc/apache2/ssl/ssl_intro.html.en
share/doc/apache2/ssl/ssl_intro.html.ja.euc-jp
share/doc/apache2/ssl/ssl_intro.html.ja.utf8
share/doc/apache2/stopping.html
share/doc/apache2/stopping.html.de
share/doc/apache2/stopping.html.en
share/doc/apache2/stopping.html.es
share/doc/apache2/stopping.html.fr
share/doc/apache2/stopping.html.ja.euc-jp
share/doc/apache2/stopping.html.ja.utf8
share/doc/apache2/stopping.html.ko.euc-kr
share/doc/apache2/stopping.html.tr.utf8
share/doc/apache2/style/
share/doc/apache2/style/build.properties
share/doc/apache2/style/common.dtd
@ -785,61 +808,23 @@ share/doc/apache2/style/lang/
share/doc/apache2/style/lang.dtd
share/doc/apache2/style/latex/
share/doc/apache2/style/latex/atbeginend.sty
share/doc/apache2/style/latex/common.xsl
share/doc/apache2/style/latex/directiveindex.xsl
share/doc/apache2/style/latex/faq.xsl
share/doc/apache2/style/latex/html.xsl
share/doc/apache2/style/latex/latex.xsl
share/doc/apache2/style/latex/manualpage.xsl
share/doc/apache2/style/latex/moduleindex.xsl
share/doc/apache2/style/latex/quickreference.xsl
share/doc/apache2/style/latex/synopsis.xsl
share/doc/apache2/style/manual.de.xsl
share/doc/apache2/style/manual.en.xsl
share/doc/apache2/style/manual.es.xsl
share/doc/apache2/style/manual.fr.xsl
share/doc/apache2/style/manual.ja.xsl
share/doc/apache2/style/manual.ko.xsl
share/doc/apache2/style/manual.pt-br.xsl
share/doc/apache2/style/manual.ru.xsl
share/doc/apache2/style/manualpage.dtd
share/doc/apache2/style/modulesynopsis.dtd
share/doc/apache2/style/sitemap.dtd
share/doc/apache2/style/version.ent
share/doc/apache2/style/xsl/
share/doc/apache2/style/xsl/common.xsl
share/doc/apache2/style/xsl/convmap.xsl
share/doc/apache2/style/xsl/directiveindex.xsl
share/doc/apache2/style/xsl/faq.xsl
share/doc/apache2/style/xsl/hhc.xsl
share/doc/apache2/style/xsl/hhp.xsl
share/doc/apache2/style/xsl/indexpage.xsl
share/doc/apache2/style/xsl/language.xsl
share/doc/apache2/style/xsl/maf.xsl
share/doc/apache2/style/xsl/manualpage.xsl
share/doc/apache2/style/xsl/moduleindex.xsl
share/doc/apache2/style/xsl/nroff.xsl
share/doc/apache2/style/xsl/quickreference.xsl
share/doc/apache2/style/xsl/sitemap.xsl
share/doc/apache2/style/xsl/synopsis.xsl
share/doc/apache2/style/xsl/typemap.xsl
share/doc/apache2/style/xsl/util/
share/doc/apache2/style/xsl/util/modtrans.xsl
share/doc/apache2/suexec.html
share/doc/apache2/suexec.html.en
share/doc/apache2/suexec.html.ja.euc-jp
share/doc/apache2/suexec.html.ja.utf8
share/doc/apache2/suexec.html.ko.euc-kr
share/doc/apache2/upgrading.html
share/doc/apache2/upgrading.html.de
share/doc/apache2/upgrading.html.en
share/doc/apache2/upgrading.html.fr
share/doc/apache2/upgrading.html.ja.euc-jp
share/doc/apache2/upgrading.html.ko.euc-kr
share/doc/apache2/upgrading.html.pt-br
share/doc/apache2/upgrading.html.ru.koi8-r
share/doc/apache2/urlmapping.html
share/doc/apache2/urlmapping.html.en
share/doc/apache2/urlmapping.html.ja.euc-jp
share/doc/apache2/urlmapping.html.ja.utf8
share/doc/apache2/urlmapping.html.ko.euc-kr
share/doc/apache2/vhosts/
share/doc/apache2/vhosts/details.html
@ -849,25 +834,27 @@ share/doc/apache2/vhosts/details.html.ko.euc-kr
share/doc/apache2/vhosts/examples.html
share/doc/apache2/vhosts/examples.html.en
share/doc/apache2/vhosts/examples.html.fr
share/doc/apache2/vhosts/examples.html.ja.euc-jp
share/doc/apache2/vhosts/examples.html.ja.utf8
share/doc/apache2/vhosts/examples.html.ko.euc-kr
share/doc/apache2/vhosts/fd-limits.html
share/doc/apache2/vhosts/fd-limits.html.en
share/doc/apache2/vhosts/fd-limits.html.fr
share/doc/apache2/vhosts/fd-limits.html.ja.euc-jp
share/doc/apache2/vhosts/fd-limits.html.ja.utf8
share/doc/apache2/vhosts/fd-limits.html.ko.euc-kr
share/doc/apache2/vhosts/index.html
share/doc/apache2/vhosts/index.html.de
share/doc/apache2/vhosts/index.html.en
share/doc/apache2/vhosts/index.html.fr
share/doc/apache2/vhosts/index.html.ja.euc-jp
share/doc/apache2/vhosts/index.html.ja.utf8
share/doc/apache2/vhosts/index.html.ko.euc-kr
share/doc/apache2/vhosts/index.html.ru.koi8-r
share/doc/apache2/vhosts/index.html.tr.utf8
share/doc/apache2/vhosts/ip-based.html
share/doc/apache2/vhosts/ip-based.html.en
share/doc/apache2/vhosts/ip-based.html.fr
share/doc/apache2/vhosts/ip-based.html.ja.euc-jp
share/doc/apache2/vhosts/ip-based.html.ja.utf8
share/doc/apache2/vhosts/ip-based.html.ko.euc-kr
share/doc/apache2/vhosts/ip-based.html.tr.utf8
share/doc/apache2/vhosts/mass.html
share/doc/apache2/vhosts/mass.html.en
share/doc/apache2/vhosts/mass.html.ko.euc-kr
@ -875,8 +862,9 @@ share/doc/apache2/vhosts/name-based.html
share/doc/apache2/vhosts/name-based.html.de
share/doc/apache2/vhosts/name-based.html.en
share/doc/apache2/vhosts/name-based.html.fr
share/doc/apache2/vhosts/name-based.html.ja.euc-jp
share/doc/apache2/vhosts/name-based.html.ja.utf8
share/doc/apache2/vhosts/name-based.html.ko.euc-kr
share/doc/apache2/vhosts/name-based.html.tr.utf8
share/examples/apache2/
@sample /var/apache2/
share/examples/apache2/cgi-bin/