diff --git a/www/apache13+ipv6/Makefile b/www/apache13+ipv6/Makefile index c996073595e9..3dce67e5c7de 100644 --- a/www/apache13+ipv6/Makefile +++ b/www/apache13+ipv6/Makefile @@ -1,144 +1,160 @@ # New ports collection makefile for: apache HTTPD # Date created: Fri Feb 18 03:04:36 JST 2000 # Whom: sumikawa # # $FreeBSD$ # PORTNAME= apache+ipv6 PORTVERSION= 1.3.29 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} DISTNAME= apache_${PORTVERSION} PATCH_SITES= http://www.tendra.org/~asmodai/ipv6/ PATCHFILES= apache-1.3.29-v6-20031112.diff.gz MAINTAINER= sumikawa@FreeBSD.org COMMENT= The extremely popular Apache http server. Very fast, very clean CONFLICTS= apache+mod_ssl-1.* apache+mod_ssl+ipv6-1.* apache+mod_ssl+modsnmp-1.* \ apache+mod_ssl+mod_snmp+ipv6-1.* apache+mod_ssl+mod_accel-1.* \ apache+mod_ssl+mod_snmp+mod_accel-1.* \ apache+ssl-1.* apache-1.* apache-2.* apache_fp-1.* \ caudium-devel-1.* caudium10-1.* caudium12-* \ ru-apache+mod_ssl-1.* ru-apache-1.* thttpd-2.* USE_PERL5= yes +USE_RC_SUBR= yes -DATADIR=${PREFIX}/www -DOCUMENT_ROOT=${DATADIR}/data +.if defined(APACHE_DATADIR) +DATADIR= ${APACHE_DATADIR} +.else +DATADIR= ${PREFIX}/www +.endif +.if defined(APACHE_DOCUMENT_ROOT) +DOCUMENT_ROOT= ${APACHE_DOCUMENT_ROOT} +.else +DOCUMENT_ROOT= ${DATADIR}/data +.endif +.if defined(APACHE_CGIBIN_ROOT) +CGIBIN_ROOT= ${APACHE_CGIBIN_ROOT} +.else +CGIBIN_ROOT= ${DATADIR}/cgi-bin +.endif DEFAULT_PATH=/bin:/usr/bin:${PREFIX}/bin +RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR} .if defined(WITHOUT_APACHE_EXPAT) && ${WITHOUT_APACHE_EXPAT} == yes EXPAT_CONF+= --disable-rule=EXPAT .else .if !defined(WITH_APACHE_INTERNAL_EXPAT) || ${WITH_APACHE_INTERNAL_EXPAT} != yes LIB_DEPENDS+= expat.5:${PORTSDIR}/textproc/expat2 .endif EXPAT_CONF+= --enable-rule=EXPAT .endif .if defined(WITH_APACHE_SUEXEC) && ${WITH_APACHE_SUEXEC} == yes APACHE_SUEXEC_DOCROOT?=${DOCUMENT_ROOT} APACHE_SUEXEC_LOG?=/var/log/httpd-suexec.log APACHE_SUEXEC_USERDIR?=public_html APACHE_SUEXEC_UIDMIN?=1000 APACHE_SUEXEC_GIDMIN?=1000 APACHE_SUEXEC_CALLER?=www SUEXEC_CONF= \ --enable-suexec \ --suexec-docroot=${APACHE_SUEXEC_DOCROOT} \ --suexec-caller=${APACHE_SUEXEC_CALLER} \ --suexec-uidmin=${APACHE_SUEXEC_UIDMIN} \ --suexec-gidmin=${APACHE_SUEXEC_GIDMIN} \ --suexec-logfile=${APACHE_SUEXEC_LOG} \ --suexec-userdir=${APACHE_SUEXEC_USERDIR} \ --suexec-safepath=${DEFAULT_PATH} .if defined(APACHE_SUEXEC_UMASK) SUEXEC_CONF+= \ --suexec-umask=${APACHE_SUEXEC_UMASK} .endif PLIST_SUB+= SUB_SUEXEC="" SUEXEC_MAN= suexec.8 .else # !SUEXEC SUEXEC_CONF= PLIST_SUB+= SUB_SUEXEC="@comment " SUEXEC_MAN= .endif # !SUEXEC HAS_CONFIGURE= yes # += for child ports CONFIGURE_ARGS+= \ --prefix=${PREFIX} \ --server-uid=www \ --server-gid=www \ --with-perl=${PERL} \ --with-layout=FreeBSD \ + --datadir=${DATADIR} \ + --htdocsdir=${DOCUMENT_ROOT} \ + --cgidir=${CGIBIN_ROOT} \ --without-confadjust \ --enable-rule=INET6 \ --enable-module=most \ --enable-module=auth_db \ --enable-module=mmap_static \ --disable-module=auth_dbm \ --enable-shared=max \ ${SUEXEC_CONF} \ ${EXPAT_CONF} CFLAGS+=-DDOCUMENT_LOCATION=\\\\\"${DOCUMENT_ROOT}\\\\\" \ -DDEFAULT_PATH=\\\\\"${DEFAULT_PATH}\\\\\" # # Set APACHE_HARD_SERVER_LIMIT env. variable to desired value # .if defined(APACHE_HARD_SERVER_LIMIT) CFLAGS+=-DHARD_SERVER_LIMIT=${APACHE_HARD_SERVER_LIMIT} .else CFLAGS+=-DHARD_SERVER_LIMIT=512 .endif # # Set WITH_APACHE_PERF_TUNING env. variable to yes to get maximum performance # .if defined(WITH_APACHE_PERF_TUNING) && ${WITH_APACHE_PERF_TUNING} == yes CFLAGS+=-DBUFFERED_LOGS # Don't use OPTIM below, it is inserted _before_ CFLAGS CFLAGS+=-O6 -fomit-frame-pointer .endif CONFIGURE_ENV= OPTIM='${OPTIM}' LD_SHLIB='${CC}' LIBS='${LIBS}' .if (!defined(WITHOUT_APACHE_EXPAT) || ${WITHOUT_APACHE_EXPAT} != yes) && \ (!defined(WITH_APACHE_INTERNAL_EXPAT) || ${WITH_APACHE_INTERNAL_EXPAT} != yes) CONFIGURE_ENV+= \ INCLUDES=-I${LOCALBASE}/include \ LDFLAGS=-L${LOCALBASE}/lib .endif MAN1= dbmmanage.1 htdigest.1 htpasswd.1 MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 \ ${SUEXEC_MAN} post-extract: - @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" ${FILESDIR}/apache.sh \ - > ${WRKSRC}/apache.sh + @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ + ${FILESDIR}/apache.sh > ${WRKSRC}/apache.sh pre-install: PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL post-install: - ${INSTALL_DATA} ${WRKSRC}/apache.sh ${PREFIX}/etc/rc.d/apache.sh-dist - @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \ - ${INSTALL_SCRIPT} ${WRKSRC}/apache.sh ${PREFIX}/etc/rc.d/apache.sh; \ - fi + ${INSTALL_SCRIPT} ${WRKSRC}/apache.sh ${PREFIX}/etc/rc.d/apache.sh + @${TOUCH} ${DOCUMENT_ROOT}-dist/EXAMPLE_DIRECTORY-DONT_ADD_OR_TOUCH_ANYTHING + @${TOUCH} ${CGIBIN_ROOT}-dist/EXAMPLE_DIRECTORY-DONT_ADD_OR_TOUCH_ANYTHING @${CAT} ${PKGMESSAGE} .include diff --git a/www/apache13+ipv6/distinfo b/www/apache13+ipv6/distinfo index 6ef08a318426..0b1b7424fd82 100644 --- a/www/apache13+ipv6/distinfo +++ b/www/apache13+ipv6/distinfo @@ -1,2 +1,4 @@ MD5 (apache_1.3.29.tar.gz) = e97fe9bf51dc2c9c233d53f63b1347e3 +SIZE (apache_1.3.29.tar.gz) = 2435809 MD5 (apache-1.3.29-v6-20031112.diff.gz) = f00f41fd04250125dd35d585ad489dd7 +SIZE (apache-1.3.29-v6-20031112.diff.gz) = 37452 diff --git a/www/apache13+ipv6/files/apache.sh b/www/apache13+ipv6/files/apache.sh index da657b5307ba..03e31dd16321 100644 --- a/www/apache13+ipv6/files/apache.sh +++ b/www/apache13+ipv6/files/apache.sh @@ -1,15 +1,32 @@ #!/bin/sh +# $FreeBSD$ -case "$1" in -start) - [ -x %%PREFIX%%/sbin/apachectl ] && %%PREFIX%%/sbin/apachectl start > /dev/null && echo -n ' apache' - ;; -stop) - [ -r /var/run/httpd.pid ] && %%PREFIX%%/sbin/apachectl stop > /dev/null && echo -n ' apache' - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 +# PROVIDE: apache +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: FreeBSD shutdown + +# Define these apache_* variables in one of these files: +# /etc/rc.conf +# /etc/rc.conf.local +# /etc/rc.conf.d/apache +# +# DO NOT CHANGE THESE DEFAULT VALUES HERE +# +apache_enable="NO" +apache_flags="" +apache_pidfile="/var/run/httpd.pid" + +. %%RC_SUBR%% + +name="apache" +rcvar=`set_rcvar` +command="%%PREFIX%%/sbin/httpd" + +load_rc_config $name + +pidfile="${apache_pidfile}" + +start_precmd="`/usr/bin/limits -e -U www`" + +run_rc_command "$1" diff --git a/www/apache13+ipv6/pkg-message b/www/apache13+ipv6/pkg-message index 76b79ba42849..99f901ee1fa3 100644 --- a/www/apache13+ipv6/pkg-message +++ b/www/apache13+ipv6/pkg-message @@ -1,4 +1,8 @@ ===> COMPATIBILITY NOTE: As of version 1.3.24, the RedirectMatch directive requires an absolute URL target location per RFC 2068. Uses of RedirectMatch that specify a relative URL will fail and must be corrected to function. + +===> BE CAREFULL HOW TO BOOT on 1.3.29_2 or after: + To run apache www server from startup, add apache_enable="YES" + in your /etc/rc.conf. diff --git a/www/apache13+ipv6/pkg-plist b/www/apache13+ipv6/pkg-plist index ea7f610234ea..8c4ae745b158 100644 --- a/www/apache13+ipv6/pkg-plist +++ b/www/apache13+ipv6/pkg-plist @@ -1,670 +1,670 @@ -@comment $FreeBSD: /tmp/pcvs/ports/www/apache13+ipv6/Attic/pkg-plist,v 1.19 2004-06-09 06:16:00 kris Exp $ +@comment $FreeBSD: /tmp/pcvs/ports/www/apache13+ipv6/Attic/pkg-plist,v 1.20 2004-06-09 17:04:00 sumikawa Exp $ bin/checkgid bin/dbmmanage bin/htdigest bin/htpasswd @unexec if cmp -s %D/etc/apache/access.conf %D/etc/apache/access.conf-dist; then rm -f %D/etc/apache/access.conf; fi etc/apache/access.conf-dist @exec [ -f %B/access.conf ] || cp %B/%f %B/access.conf @unexec if cmp -s %D/etc/apache/httpd.conf %D/etc/apache/httpd.conf-dist; then rm -f %D/etc/apache/httpd.conf; fi etc/apache/httpd.conf-dist @exec [ -f %B/httpd.conf ] || cp %B/%f %B/httpd.conf @unexec if cmp -s %D/etc/apache/magic %D/etc/apache/magic-dist; then rm -f %D/etc/apache/magic; fi etc/apache/magic-dist @exec [ -f %B/magic ] || cp %B/%f %B/magic @unexec if cmp -s %D/etc/apache/mime.types %D/etc/apache/mime.types-dist; then rm -f %D/etc/apache/mime.types; fi etc/apache/mime.types-dist @exec [ -f %B/mime.types ] || cp %B/%f %B/mime.types @unexec if cmp -s %D/etc/apache/srm.conf %D/etc/apache/srm.conf-dist; then rm -f %D/etc/apache/srm.conf; fi etc/apache/srm.conf-dist @exec [ -f %B/srm.conf ] || cp %B/%f %B/srm.conf -@unexec if cmp -s %D/etc/rc.d/apache.sh %D/etc/rc.d/apache.sh-dist; then rm -f %D/etc/rc.d/apache.sh; fi -etc/rc.d/apache.sh-dist -@exec [ -f %B/apache.sh ] || ( cp %B/%f %B/apache.sh; chmod 755 %B/apache.sh ) +etc/rc.d/apache.sh include/apache/ap.h include/apache/ap_alloc.h include/apache/ap_compat.h include/apache/ap_config.h include/apache/ap_config_auto.h include/apache/ap_ctype.h include/apache/ap_ebcdic.h include/apache/ap_md5.h include/apache/ap_mmn.h include/apache/ap_sha1.h include/apache/buff.h include/apache/compat.h include/apache/conf.h include/apache/explain.h include/apache/fnmatch.h include/apache/hsregex.h include/apache/http_conf_globals.h include/apache/http_config.h include/apache/http_core.h include/apache/http_log.h include/apache/http_main.h include/apache/http_protocol.h include/apache/http_request.h include/apache/http_vhost.h include/apache/httpd.h include/apache/multithread.h include/apache/os-inline.c include/apache/os.h include/apache/rfc1413.h include/apache/sa_len.h include/apache/scoreboard.h include/apache/sockaddr_storage.h include/apache/util_date.h include/apache/util_md5.h include/apache/util_script.h include/apache/util_uri.h include/apache/xml/asciitab.h include/apache/xml/hashtable.h include/apache/xml/iasciitab.h include/apache/xml/latin1tab.h include/apache/xml/nametab.h include/apache/xml/utf8tab.h include/apache/xml/xmldef.h include/apache/xml/xmlparse.h include/apache/xml/xmlrole.h include/apache/xml/xmltok.h include/apache/xml/xmltok_impl.h libexec/apache/httpd.exp libexec/apache/libproxy.so libexec/apache/mod_access.so libexec/apache/mod_actions.so libexec/apache/mod_alias.so libexec/apache/mod_asis.so libexec/apache/mod_auth.so libexec/apache/mod_auth_anon.so libexec/apache/mod_auth_db.so libexec/apache/mod_autoindex.so libexec/apache/mod_cern_meta.so libexec/apache/mod_cgi.so libexec/apache/mod_digest.so libexec/apache/mod_dir.so libexec/apache/mod_env.so libexec/apache/mod_expires.so libexec/apache/mod_headers.so libexec/apache/mod_imap.so libexec/apache/mod_include.so libexec/apache/mod_info.so libexec/apache/mod_log_config.so libexec/apache/mod_mime.so libexec/apache/mod_mime_magic.so libexec/apache/mod_mmap_static.so libexec/apache/mod_negotiation.so libexec/apache/mod_rewrite.so libexec/apache/mod_setenvif.so libexec/apache/mod_speling.so libexec/apache/mod_status.so libexec/apache/mod_unique_id.so libexec/apache/mod_userdir.so libexec/apache/mod_usertrack.so libexec/apache/mod_vhost_alias.so sbin/ab sbin/apachectl sbin/apxs sbin/httpd sbin/logresolve sbin/rotatelogs %%SUB_SUEXEC%%sbin/suexec -www/data-dist/apache_pb.gif +www/data-dist/EXAMPLE_DIRECTORY-DONT_ADD_OR_TOUCH_ANYTHING @exec [ -d %D/www/data/ ] || ln -fs %B %D/www/data +www/data-dist/apache_pb.gif www/data-dist/index.html.ca www/data-dist/index.html.cz www/data-dist/index.html.de www/data-dist/index.html.dk www/data-dist/index.html.ee www/data-dist/index.html.el www/data-dist/index.html.en www/data-dist/index.html.es www/data-dist/index.html.fr www/data-dist/index.html.he.iso8859-8 www/data-dist/index.html.it www/data-dist/index.html.ja.jis www/data-dist/index.html.kr.iso-kr www/data-dist/index.html.lb.utf8 www/data-dist/index.html.nl www/data-dist/index.html.nn www/data-dist/index.html.no www/data-dist/index.html.po.iso-pl www/data-dist/index.html.pt www/data-dist/index.html.pt-br www/data-dist/index.html.ru.cp-1251 www/data-dist/index.html.ru.cp866 www/data-dist/index.html.ru.iso-ru www/data-dist/index.html.ru.koi8-r www/data-dist/index.html.ru.ucs2 www/data-dist/index.html.ru.ucs4 www/data-dist/index.html.ru.utf8 www/data-dist/index.html.se www/data-dist/index.html.zh-tw.big5 share/doc/apache/FAQ.html share/doc/apache/LICENSE share/doc/apache/bind.html.en share/doc/apache/bind.html.fr share/doc/apache/bind.html.html share/doc/apache/bind.html.ja.jis share/doc/apache/cgi_path.html.en share/doc/apache/cgi_path.html.fr share/doc/apache/cgi_path.html.html share/doc/apache/cgi_path.html.ja.jis share/doc/apache/configuring.html.en share/doc/apache/configuring.html.fr share/doc/apache/configuring.html.html share/doc/apache/configuring.html.ja.jis share/doc/apache/content-negotiation.html.en share/doc/apache/content-negotiation.html.html share/doc/apache/content-negotiation.html.ja.jis share/doc/apache/custom-error.html.en share/doc/apache/custom-error.html.fr share/doc/apache/custom-error.html.html share/doc/apache/custom-error.html.ja.jis share/doc/apache/cygwin.html share/doc/apache/dns-caveats.html.en share/doc/apache/dns-caveats.html.fr share/doc/apache/dns-caveats.html.html share/doc/apache/dso.html share/doc/apache/ebcdic.html share/doc/apache/env.html.en share/doc/apache/env.html.html share/doc/apache/env.html.ja.jis share/doc/apache/footer.html share/doc/apache/handler.html.en share/doc/apache/handler.html.html share/doc/apache/handler.html.ja.jis share/doc/apache/header.html share/doc/apache/howto/auth.html share/doc/apache/howto/cgi.html.en share/doc/apache/howto/cgi.html.html share/doc/apache/howto/cgi.html.ja.jis share/doc/apache/howto/footer.html share/doc/apache/howto/header.html share/doc/apache/howto/htaccess.html share/doc/apache/howto/ssi.html.en share/doc/apache/howto/ssi.html.html share/doc/apache/howto/ssi.html.ja.jis share/doc/apache/images/apache_header.gif share/doc/apache/images/custom_errordocs.gif share/doc/apache/images/home.gif share/doc/apache/images/index.gif share/doc/apache/images/mod_rewrite_fig1.fig share/doc/apache/images/mod_rewrite_fig1.gif share/doc/apache/images/mod_rewrite_fig2.fig share/doc/apache/images/mod_rewrite_fig2.gif share/doc/apache/images/pixel.gif share/doc/apache/images/sub.gif share/doc/apache/index.html.en share/doc/apache/index.html.fr share/doc/apache/index.html.html share/doc/apache/index.html.ja.jis share/doc/apache/install-tpf.html share/doc/apache/install.html.en share/doc/apache/install.html.es share/doc/apache/install.html.fr share/doc/apache/install.html.html share/doc/apache/install.html.ja.jis share/doc/apache/invoking.html.en share/doc/apache/invoking.html.fr share/doc/apache/invoking.html.html share/doc/apache/keepalive.html.en share/doc/apache/keepalive.html.html share/doc/apache/keepalive.html.ja.jis share/doc/apache/location.html share/doc/apache/logs.html share/doc/apache/man-template.html share/doc/apache/misc/API.html share/doc/apache/misc/FAQ.html share/doc/apache/misc/HTTP_Features.tsv share/doc/apache/misc/client_block_api.html share/doc/apache/misc/compat_notes.html share/doc/apache/misc/custom_errordocs.html share/doc/apache/misc/descriptors.html share/doc/apache/misc/fin_wait_2.html share/doc/apache/misc/footer.html share/doc/apache/misc/header.html share/doc/apache/misc/howto.html share/doc/apache/misc/index.html share/doc/apache/misc/known_client_problems.html share/doc/apache/misc/nopgp.html share/doc/apache/misc/perf-bsd44.html share/doc/apache/misc/perf-dec.html share/doc/apache/misc/perf-hp.html share/doc/apache/misc/perf-tuning.html share/doc/apache/misc/perf.html share/doc/apache/misc/rewriteguide.html share/doc/apache/misc/security_tips.html share/doc/apache/misc/tutorials.html share/doc/apache/misc/vif-info.html share/doc/apache/misc/windoz_keepalive.html share/doc/apache/mod/core.html.en share/doc/apache/mod/core.html.fr share/doc/apache/mod/core.html.html share/doc/apache/mod/core.html.ja.jis share/doc/apache/mod/directive-dict.html.en share/doc/apache/mod/directive-dict.html.fr share/doc/apache/mod/directive-dict.html.html share/doc/apache/mod/directive-dict.html.ja.jis share/doc/apache/mod/directives.html.de share/doc/apache/mod/directives.html.en share/doc/apache/mod/directives.html.fr share/doc/apache/mod/directives.html.html share/doc/apache/mod/directives.html.ja.jis share/doc/apache/mod/footer.html share/doc/apache/mod/header.html share/doc/apache/mod/index-bytype.html.en share/doc/apache/mod/index-bytype.html.fr share/doc/apache/mod/index-bytype.html.html share/doc/apache/mod/index-bytype.html.ja.jis share/doc/apache/mod/index.html.en share/doc/apache/mod/index.html.fr share/doc/apache/mod/index.html.html share/doc/apache/mod/index.html.ja.jis share/doc/apache/mod/mod_access.html.en share/doc/apache/mod/mod_access.html.html share/doc/apache/mod/mod_access.html.ja.jis share/doc/apache/mod/mod_actions.html.en share/doc/apache/mod/mod_actions.html.html share/doc/apache/mod/mod_actions.html.ja.jis share/doc/apache/mod/mod_alias.html.en share/doc/apache/mod/mod_alias.html.html share/doc/apache/mod/mod_alias.html.ja.jis share/doc/apache/mod/mod_asis.html.en share/doc/apache/mod/mod_asis.html.html share/doc/apache/mod/mod_asis.html.ja.jis share/doc/apache/mod/mod_auth.html.en share/doc/apache/mod/mod_auth.html.html share/doc/apache/mod/mod_auth.html.ja.jis share/doc/apache/mod/mod_auth_anon.html share/doc/apache/mod/mod_auth_db.html share/doc/apache/mod/mod_auth_dbm.html share/doc/apache/mod/mod_auth_digest.html share/doc/apache/mod/mod_autoindex.html share/doc/apache/mod/mod_browser.html share/doc/apache/mod/mod_cern_meta.html share/doc/apache/mod/mod_cgi.html.en share/doc/apache/mod/mod_cgi.html.html share/doc/apache/mod/mod_cgi.html.ja.jis share/doc/apache/mod/mod_cookies.html share/doc/apache/mod/mod_digest.html share/doc/apache/mod/mod_dir.html.en share/doc/apache/mod/mod_dir.html.html share/doc/apache/mod/mod_dir.html.ja.jis share/doc/apache/mod/mod_dld.html share/doc/apache/mod/mod_env.html.en share/doc/apache/mod/mod_env.html.html share/doc/apache/mod/mod_env.html.ja.jis share/doc/apache/mod/mod_example.html share/doc/apache/mod/mod_expires.html share/doc/apache/mod/mod_headers.html share/doc/apache/mod/mod_imap.html share/doc/apache/mod/mod_include.html share/doc/apache/mod/mod_info.html.en share/doc/apache/mod/mod_info.html.html share/doc/apache/mod/mod_info.html.ja.jis share/doc/apache/mod/mod_isapi.html share/doc/apache/mod/mod_log_agent.html share/doc/apache/mod/mod_log_common.html share/doc/apache/mod/mod_log_config.html.en share/doc/apache/mod/mod_log_config.html.html share/doc/apache/mod/mod_log_config.html.ja.jis share/doc/apache/mod/mod_log_referer.html share/doc/apache/mod/mod_mime.html.en share/doc/apache/mod/mod_mime.html.html share/doc/apache/mod/mod_mime.html.ja.jis share/doc/apache/mod/mod_mime_magic.html share/doc/apache/mod/mod_mmap_static.html share/doc/apache/mod/mod_negotiation.html.en share/doc/apache/mod/mod_negotiation.html.html share/doc/apache/mod/mod_negotiation.html.ja.jis share/doc/apache/mod/mod_proxy.html share/doc/apache/mod/mod_rewrite.html.en share/doc/apache/mod/mod_rewrite.html.html share/doc/apache/mod/mod_rewrite.html.ja.jis share/doc/apache/mod/mod_setenvif.html.en share/doc/apache/mod/mod_setenvif.html.html share/doc/apache/mod/mod_setenvif.html.ja.jis share/doc/apache/mod/mod_so.html.en share/doc/apache/mod/mod_so.html.html share/doc/apache/mod/mod_so.html.ja.jis share/doc/apache/mod/mod_speling.html.en share/doc/apache/mod/mod_speling.html.html share/doc/apache/mod/mod_speling.html.ja.jis share/doc/apache/mod/mod_status.html share/doc/apache/mod/mod_unique_id.html.en share/doc/apache/mod/mod_unique_id.html.html share/doc/apache/mod/mod_unique_id.html.ja.jis share/doc/apache/mod/mod_userdir.html.en share/doc/apache/mod/mod_userdir.html.html share/doc/apache/mod/mod_userdir.html.ja.jis share/doc/apache/mod/mod_usertrack.html share/doc/apache/mod/mod_vhost_alias.html share/doc/apache/mod/module-dict.html.en share/doc/apache/mod/module-dict.html.html share/doc/apache/mod/module-dict.html.ja.jis share/doc/apache/mpeix.html share/doc/apache/multilogs.html share/doc/apache/netware.html share/doc/apache/new_features_1_0.html share/doc/apache/new_features_1_1.html share/doc/apache/new_features_1_2.html share/doc/apache/new_features_1_3.html.en share/doc/apache/new_features_1_3.html.html share/doc/apache/new_features_1_3.html.ja.jis share/doc/apache/new_features_2_0.html share/doc/apache/process-model.html.en share/doc/apache/process-model.html.html share/doc/apache/process-model.html.ja.jis share/doc/apache/programs/ab.html share/doc/apache/programs/apachectl.html.en share/doc/apache/programs/apachectl.html.html share/doc/apache/programs/apachectl.html.ja.jis share/doc/apache/programs/apxs.html share/doc/apache/programs/dbmmanage.html share/doc/apache/programs/footer.html share/doc/apache/programs/header.html share/doc/apache/programs/htdigest.html share/doc/apache/programs/htpasswd.html.en share/doc/apache/programs/htpasswd.html.html share/doc/apache/programs/htpasswd.html.ja.jis share/doc/apache/programs/httpd.html.en share/doc/apache/programs/httpd.html.html share/doc/apache/programs/httpd.html.ja.jis share/doc/apache/programs/index.html.en share/doc/apache/programs/index.html.html share/doc/apache/programs/index.html.ja.jis share/doc/apache/programs/logresolve.html share/doc/apache/programs/other.html share/doc/apache/programs/rotatelogs.html share/doc/apache/programs/suexec.html.en share/doc/apache/programs/suexec.html.html share/doc/apache/programs/suexec.html.ja.jis share/doc/apache/readme-tpf.html share/doc/apache/search/manual-index.cgi share/doc/apache/sections.html.en share/doc/apache/sections.html.html share/doc/apache/sections.html.ja.jis share/doc/apache/server-wide.html.en share/doc/apache/server-wide.html.fr share/doc/apache/server-wide.html.html share/doc/apache/server-wide.html.ja.jis share/doc/apache/sitemap.html share/doc/apache/sourcereorg.html share/doc/apache/stopping.html.en share/doc/apache/stopping.html.fr share/doc/apache/stopping.html.html share/doc/apache/suexec.html.en share/doc/apache/suexec.html.html share/doc/apache/suexec.html.ja.jis share/doc/apache/suexec_1_2.html share/doc/apache/unixware.html share/doc/apache/upgrading_to_1_3.html share/doc/apache/urlmapping.html share/doc/apache/vhosts/details.html share/doc/apache/vhosts/details_1_2.html share/doc/apache/vhosts/examples.html share/doc/apache/vhosts/fd-limits.html.en share/doc/apache/vhosts/fd-limits.html.html share/doc/apache/vhosts/fd-limits.html.ja.jis share/doc/apache/vhosts/footer.html share/doc/apache/vhosts/header.html share/doc/apache/vhosts/host.html share/doc/apache/vhosts/index.html.en share/doc/apache/vhosts/index.html.html share/doc/apache/vhosts/index.html.ja.jis share/doc/apache/vhosts/ip-based.html share/doc/apache/vhosts/mass.html share/doc/apache/vhosts/name-based.html.en share/doc/apache/vhosts/name-based.html.html share/doc/apache/vhosts/name-based.html.ja.jis share/doc/apache/vhosts/vhosts-in-depth.html share/doc/apache/vhosts/virtual-host.html share/doc/apache/win_compiling.html.en share/doc/apache/win_compiling.html.html share/doc/apache/win_compiling.html.ja.jis share/doc/apache/win_service.html.en share/doc/apache/win_service.html.html share/doc/apache/win_service.html.ja.jis share/doc/apache/windows.html.en share/doc/apache/windows.html.ja.jis -www/cgi-bin-dist/printenv +www/cgi-bin-dist/EXAMPLE_DIRECTORY-DONT_ADD_OR_TOUCH_ANYTHING @exec [ -d %D/www/cgi-bin/ ] || ln -fs %B %D/www/cgi-bin +www/cgi-bin-dist/printenv www/cgi-bin-dist/test-cgi www/icons/README www/icons/a.gif www/icons/a.png www/icons/alert.black.gif www/icons/alert.black.png www/icons/alert.red.gif www/icons/alert.red.png www/icons/apache_pb.gif www/icons/apache_pb.png www/icons/back.gif www/icons/back.png www/icons/ball.gray.gif www/icons/ball.gray.png www/icons/ball.red.gif www/icons/ball.red.png www/icons/binary.gif www/icons/binary.png www/icons/binhex.gif www/icons/binhex.png www/icons/blank.gif www/icons/blank.png www/icons/bomb.gif www/icons/bomb.png www/icons/box1.gif www/icons/box1.png www/icons/box2.gif www/icons/box2.png www/icons/broken.gif www/icons/broken.png www/icons/burst.gif www/icons/burst.png www/icons/c.gif www/icons/c.png www/icons/comp.blue.gif www/icons/comp.blue.png www/icons/comp.gray.gif www/icons/comp.gray.png www/icons/compressed.gif www/icons/compressed.png www/icons/continued.gif www/icons/continued.png www/icons/dir.gif www/icons/dir.png www/icons/diskimg.gif www/icons/diskimg.png www/icons/down.gif www/icons/down.png www/icons/dvi.gif www/icons/dvi.png www/icons/f.gif www/icons/f.png www/icons/folder.gif www/icons/folder.open.gif www/icons/folder.open.png www/icons/folder.png www/icons/folder.sec.gif www/icons/folder.sec.png www/icons/forward.gif www/icons/forward.png www/icons/generic.gif www/icons/generic.png www/icons/generic.red.gif www/icons/generic.red.png www/icons/generic.sec.gif www/icons/generic.sec.png www/icons/hand.right.gif www/icons/hand.right.png www/icons/hand.up.gif www/icons/hand.up.png www/icons/icon.sheet.gif www/icons/icon.sheet.png www/icons/image1.gif www/icons/image1.png www/icons/image2.gif www/icons/image2.png www/icons/image3.gif www/icons/image3.png www/icons/index.gif www/icons/index.png www/icons/layout.gif www/icons/layout.png www/icons/left.gif www/icons/left.png www/icons/link.gif www/icons/link.png www/icons/movie.gif www/icons/movie.png www/icons/p.gif www/icons/p.png www/icons/patch.gif www/icons/patch.png www/icons/pdf.gif www/icons/pdf.png www/icons/pie0.gif www/icons/pie0.png www/icons/pie1.gif www/icons/pie1.png www/icons/pie2.gif www/icons/pie2.png www/icons/pie3.gif www/icons/pie3.png www/icons/pie4.gif www/icons/pie4.png www/icons/pie5.gif www/icons/pie5.png www/icons/pie6.gif www/icons/pie6.png www/icons/pie7.gif www/icons/pie7.png www/icons/pie8.gif www/icons/pie8.png www/icons/portal.gif www/icons/portal.png www/icons/ps.gif www/icons/ps.png www/icons/quill.gif www/icons/quill.png www/icons/right.gif www/icons/right.png www/icons/screw1.gif www/icons/screw1.png www/icons/screw2.gif www/icons/screw2.png www/icons/script.gif www/icons/script.png www/icons/small/README.txt www/icons/small/back.gif www/icons/small/back.png www/icons/small/binary.gif www/icons/small/binary.png www/icons/small/binhex.gif www/icons/small/binhex.png www/icons/small/blank.gif www/icons/small/blank.png www/icons/small/broken.gif www/icons/small/broken.png www/icons/small/burst.gif www/icons/small/burst.png www/icons/small/comp1.gif www/icons/small/comp1.png www/icons/small/comp2.gif www/icons/small/comp2.png www/icons/small/compressed.gif www/icons/small/compressed.png www/icons/small/continued.gif www/icons/small/continued.png www/icons/small/dir.gif www/icons/small/dir.png www/icons/small/dir2.gif www/icons/small/dir2.png www/icons/small/doc.gif www/icons/small/doc.png www/icons/small/forward.gif www/icons/small/forward.png www/icons/small/generic.gif www/icons/small/generic.png www/icons/small/generic2.gif www/icons/small/generic2.png www/icons/small/generic3.gif www/icons/small/generic3.png www/icons/small/image.gif www/icons/small/image.png www/icons/small/image2.gif www/icons/small/image2.png www/icons/small/index.gif www/icons/small/index.png www/icons/small/key.gif www/icons/small/key.png www/icons/small/movie.gif www/icons/small/movie.png www/icons/small/patch.gif www/icons/small/patch.png www/icons/small/ps.gif www/icons/small/ps.png www/icons/small/rainbow.gif www/icons/small/rainbow.png www/icons/small/sound.gif www/icons/small/sound.png www/icons/small/sound2.gif www/icons/small/sound2.png www/icons/small/tar.gif www/icons/small/tar.png www/icons/small/text.gif www/icons/small/text.png www/icons/small/transfer.gif www/icons/small/transfer.png www/icons/small/unknown.gif www/icons/small/unknown.png www/icons/small/uu.gif www/icons/small/uu.png www/icons/sound1.gif www/icons/sound1.png www/icons/sound2.gif www/icons/sound2.png www/icons/sphere1.gif www/icons/sphere1.png www/icons/sphere2.gif www/icons/sphere2.png www/icons/tar.gif www/icons/tar.png www/icons/tex.gif www/icons/tex.png www/icons/text.gif www/icons/text.png www/icons/transfer.gif www/icons/transfer.png www/icons/unknown.gif www/icons/unknown.png www/icons/up.gif www/icons/up.png www/icons/uu.gif www/icons/uu.png www/icons/uuencoded.gif www/icons/uuencoded.png www/icons/world1.gif www/icons/world1.png www/icons/world2.gif www/icons/world2.png @exec mkdir -p %D/www/proxy @unexec if [ -L %D/www/cgi-bin ]; then rm -f %D/www/cgi-bin; fi @unexec if [ -L %D/www/data ]; then rm -f %D/www/data; fi @dirrm etc/apache @dirrm include/apache/xml @dirrm include/apache @dirrm libexec/apache @dirrm share/doc/apache/howto @dirrm share/doc/apache/images @dirrm share/doc/apache/misc @dirrm share/doc/apache/mod @dirrm share/doc/apache/programs @dirrm share/doc/apache/search @dirrm share/doc/apache/vhosts @dirrm share/doc/apache @dirrm www/data-dist @dirrm www/cgi-bin-dist @dirrm www/icons/small @dirrm www/icons @dirrm www/proxy