Import of a new SSL-aware Apache 1.3, achieved by patching up
the original Apache 1.3.1 with mod_ssl 2.0.5 (the Apache Interface to SSLeay).
This commit is contained in:
parent
b0f30ac2aa
commit
a116af42b2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=12882
9 changed files with 557 additions and 0 deletions
82
www/apache13-modssl/Makefile
Normal file
82
www/apache13-modssl/Makefile
Normal file
|
@ -0,0 +1,82 @@
|
|||
# New ports collection makefile for: apache + mod_ssl
|
||||
# Version required: 1.3.1
|
||||
# Date created: Sat Aug 22 12:00:00 CDT 1998
|
||||
# Whom: rse@engelschall.com
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
|
||||
DISTNAME= apache_${VERSION_APACHE}
|
||||
PKGNAME= apache-${VERSION_APACHE}+mod_ssl-${VERSION_MODSSL}
|
||||
CATEGORIES= www security
|
||||
MASTER_SITES= ftp://www.apache.org/apache/dist/ \
|
||||
http://www.engelschall.com/sw/mod_ssl/distrib/ \
|
||||
ftp://ftp.engelschall.com/sw/mod_ssl/ \
|
||||
ftp://ftp.ulpgc.es/pub/mod_ssl/
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE}${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= rse@engelschall.com
|
||||
|
||||
BUILD_DEPENDS= ssleay:${PORTSDIR}/security/SSLeay \
|
||||
${PREFIX}/lib/libssl.a:${PORTSDIR}/security/SSLeay \
|
||||
${PREFIX}/lib/libcrypto.a:${PORTSDIR}/security/SSLeay
|
||||
RUN_DEPENDS= ssleay:${PORTSDIR}/security/SSLeay
|
||||
|
||||
VERSION_APACHE= 1.3.1
|
||||
VERSION_MODSSL= 2.0.5
|
||||
|
||||
RESTRICTED= "Contains cryptography"
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= \
|
||||
--sysconfdir=${PREFIX}/etc/apache \
|
||||
--includedir=${PREFIX}/include/apache \
|
||||
--logfiledir=/var/log \
|
||||
--runtimedir=/var/run \
|
||||
--datadir=${PREFIX}/www \
|
||||
--proxycachedir=${PREFIX}/www/proxy \
|
||||
--libexecdir=${PREFIX}/libexec/apache \
|
||||
--without-confadjust \
|
||||
--enable-shared=remain \
|
||||
--enable-module=most \
|
||||
--enable-module=auth_db \
|
||||
--disable-module=auth_dbm \
|
||||
--enable-module=ssl
|
||||
|
||||
OPTIM=\
|
||||
-DHARD_SERVER_LIMIT=512 \
|
||||
-DDOCUMENT_LOCATION=\\"${PREFIX}/www/data/\\" \
|
||||
-DDEFAULT_PATH=\\"/bin:/usr/bin:${PREFIX}/bin\\"
|
||||
|
||||
.if defined(APACHE_PERF_TUNING) && ${APACHE_PERF_TUNING} == YES
|
||||
CONFIGURE_ARGS+= --disable-rule=STATUS
|
||||
OPTIM+= -DBUFFERED_LOGS
|
||||
CFLAGS+= -O6 -fomit-frame-pointer -fexpensive-optimizations
|
||||
.endif
|
||||
|
||||
CONFIGURE_ENV= OPTIM='${OPTIM}' SSL_BASE='SYSTEM'
|
||||
|
||||
INSTALL_TARGET= install-quiet
|
||||
|
||||
MAN1= ab.1 apachectl.1 dbmmanage.1 htdigest.1 htpasswd.1
|
||||
MAN8= apxs.8 httpd.8 logresolve.8 rotatelogs.8
|
||||
|
||||
pre-patch:
|
||||
@cd ${WRKDIR}/mod_ssl-${VERSION_MODSSL}-${VERSION_APACHE} \
|
||||
&& ${ECHO_MSG} "===> Applying mod_ssl-${VERSION_MODSSL} extension" \
|
||||
&& ./configure --with-apache=../${DISTNAME}
|
||||
|
||||
certificate:
|
||||
@cd ${WRKSRC} \
|
||||
&& ${ECHO_MSG} "===> Creating Test Certificate for Server" \
|
||||
&& ${MAKE} certificate
|
||||
|
||||
post-install:
|
||||
@if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \
|
||||
${ECHO} "Installing ${PREFIX}/etc/rc.d/apache.sh startup file."; \
|
||||
${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/apache.sh; \
|
||||
${ECHO} "[ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start >/dev/null && ${ECHO} -n ' apache'" >> ${PREFIX}/etc/rc.d/apache.sh; \
|
||||
chmod 751 ${PREFIX}/etc/rc.d/apache.sh; \
|
||||
fi
|
||||
|
||||
.include <bsd.port.mk>
|
2
www/apache13-modssl/distinfo
Normal file
2
www/apache13-modssl/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (apache_1.3.1.tar.gz) = fd28c26f94451216a23f34f5fe22e2b4
|
||||
MD5 (mod_ssl-2.0.5-1.3.1.tar.gz) = 773e0605fb1a27d64113e4cfc1c7d254
|
40
www/apache13-modssl/files/patch-aa
Normal file
40
www/apache13-modssl/files/patch-aa
Normal file
|
@ -0,0 +1,40 @@
|
|||
*** configure.bak Sun Jul 12 13:25:46 1998
|
||||
--- configure Thu Jul 23 16:52:04 1998
|
||||
***************
|
||||
*** 877,884 ****
|
||||
echo " DEFAULT_PIDLOG: ${runtimedir_relative}httpd.pid"
|
||||
echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}httpd.scoreboard"
|
||||
echo " DEFAULT_LOCKFILE: ${runtimedir_relative}httpd.lock"
|
||||
! echo " DEFAULT_XFERLOG: ${logfiledir_relative}access_log"
|
||||
! echo " DEFAULT_ERRORLOG: ${logfiledir_relative}error_log"
|
||||
echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types"
|
||||
echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}httpd.conf"
|
||||
echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf"
|
||||
--- 877,884 ----
|
||||
echo " DEFAULT_PIDLOG: ${runtimedir_relative}httpd.pid"
|
||||
echo " DEFAULT_SCOREBOARD: ${runtimedir_relative}httpd.scoreboard"
|
||||
echo " DEFAULT_LOCKFILE: ${runtimedir_relative}httpd.lock"
|
||||
! echo " DEFAULT_XFERLOG: ${logfiledir_relative}httpd-access.log"
|
||||
! echo " DEFAULT_ERRORLOG: ${logfiledir_relative}httpd-error.log"
|
||||
echo " TYPES_CONFIG_FILE: ${sysconfdir_relative}mime.types"
|
||||
echo " SERVER_CONFIG_FILE: ${sysconfdir_relative}httpd.conf"
|
||||
echo " ACCESS_CONFIG_FILE: ${sysconfdir_relative}access.conf"
|
||||
***************
|
||||
*** 942,949 ****
|
||||
echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}httpd.pid\"'" >>$src/apaci
|
||||
echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}httpd.scoreboard\"'" >>$src/apaci
|
||||
echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}httpd.lock\"'" >>$src/apaci
|
||||
! echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}access_log\"'" >>$src/apaci
|
||||
! echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}error_log\"'" >>$src/apaci
|
||||
echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci
|
||||
echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}httpd.conf\"'" >>$src/apaci
|
||||
echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci
|
||||
--- 942,949 ----
|
||||
echo "echo '-DDEFAULT_PIDLOG=\"${runtimedir_relative}httpd.pid\"'" >>$src/apaci
|
||||
echo "echo '-DDEFAULT_SCOREBOARD=\"${runtimedir_relative}httpd.scoreboard\"'" >>$src/apaci
|
||||
echo "echo '-DDEFAULT_LOCKFILE=\"${runtimedir_relative}httpd.lock\"'" >>$src/apaci
|
||||
! echo "echo '-DDEFAULT_XFERLOG=\"${logfiledir_relative}httpd-access.log\"'" >>$src/apaci
|
||||
! echo "echo '-DDEFAULT_ERRORLOG=\"${logfiledir_relative}httpd-error.log\"'" >>$src/apaci
|
||||
echo "echo '-DTYPES_CONFIG_FILE=\"${sysconfdir_relative}mime.types\"'" >>$src/apaci
|
||||
echo "echo '-DSERVER_CONFIG_FILE=\"${sysconfdir_relative}httpd.conf\"'" >>$src/apaci
|
||||
echo "echo '-DACCESS_CONFIG_FILE=\"${sysconfdir_relative}access.conf\"'" >>$src/apaci
|
53
www/apache13-modssl/files/patch-ac
Normal file
53
www/apache13-modssl/files/patch-ac
Normal file
|
@ -0,0 +1,53 @@
|
|||
*** conf/httpd.conf-dist.orig Thu May 7 01:12:39 1998
|
||||
--- conf/httpd.conf-dist Fri Jun 5 19:34:17 1998
|
||||
***************
|
||||
*** 50,56 ****
|
||||
# don't use Group #-1 on these systems!
|
||||
|
||||
User nobody
|
||||
! Group #-1
|
||||
|
||||
# ServerAdmin: Your address, where problems with the server should be
|
||||
# e-mailed.
|
||||
--- 50,56 ----
|
||||
# don't use Group #-1 on these systems!
|
||||
|
||||
User nobody
|
||||
! Group nogroup
|
||||
|
||||
# ServerAdmin: Your address, where problems with the server should be
|
||||
# e-mailed.
|
||||
***************
|
||||
*** 94,100 ****
|
||||
# The location of the access logfile (Common Logfile Format).
|
||||
# If this does not start with /, ServerRoot is prepended to it.
|
||||
|
||||
! CustomLog logs/access_log common
|
||||
|
||||
# If you would like to have an agent and referer logfile uncomment the
|
||||
# following directives.
|
||||
--- 94,100 ----
|
||||
# The location of the access logfile (Common Logfile Format).
|
||||
# If this does not start with /, ServerRoot is prepended to it.
|
||||
|
||||
! #CustomLog logs/access_log common
|
||||
|
||||
# If you would like to have an agent and referer logfile uncomment the
|
||||
# following directives.
|
||||
***************
|
||||
*** 105,111 ****
|
||||
# If you prefer a single logfile with access, agent and referer information
|
||||
# (Combined Logfile Format) you can use the following directive.
|
||||
|
||||
! #CustomLog logs/access_log combined
|
||||
|
||||
# PidFile: The file the server should log its pid to
|
||||
PidFile logs/httpd.pid
|
||||
--- 105,111 ----
|
||||
# If you prefer a single logfile with access, agent and referer information
|
||||
# (Combined Logfile Format) you can use the following directive.
|
||||
|
||||
! CustomLog logs/access_log combined
|
||||
|
||||
# PidFile: The file the server should log its pid to
|
||||
PidFile logs/httpd.pid
|
40
www/apache13-modssl/files/patch-ad
Normal file
40
www/apache13-modssl/files/patch-ad
Normal file
|
@ -0,0 +1,40 @@
|
|||
*** src/support/apachectl.orig Fri Jul 17 01:25:54 1998
|
||||
--- src/support/apachectl Fri Jul 24 00:34:59 1998
|
||||
***************
|
||||
*** 39,44 ****
|
||||
--- 39,46 ----
|
||||
# -------------------- --------------------
|
||||
# |||||||||||||||||||| END CONFIGURATION SECTION ||||||||||||||||||||
|
||||
|
||||
+ eval `limits -e -C daemon` >/dev/null 2>&1
|
||||
+
|
||||
ERROR=0
|
||||
ARGV="$@"
|
||||
if [ "x$ARGV" = "x" ] ; then
|
||||
***************
|
||||
*** 50,56 ****
|
||||
# check for pidfile
|
||||
if [ -f $PIDFILE ] ; then
|
||||
PID=`cat $PIDFILE`
|
||||
! if kill -0 $PID; then
|
||||
STATUS="httpd (pid $PID) running"
|
||||
RUNNING=1
|
||||
else
|
||||
--- 52,58 ----
|
||||
# check for pidfile
|
||||
if [ -f $PIDFILE ] ; then
|
||||
PID=`cat $PIDFILE`
|
||||
! if kill -0 $PID > /dev/null 2>&1; then
|
||||
STATUS="httpd (pid $PID) running"
|
||||
RUNNING=1
|
||||
else
|
||||
***************
|
||||
*** 82,87 ****
|
||||
--- 84,90 ----
|
||||
fi
|
||||
if kill $PID ; then
|
||||
echo "$0 $ARG: httpd stopped"
|
||||
+ rm $PIDFILE
|
||||
else
|
||||
echo "$0 $ARG: httpd could not be stopped"
|
||||
ERROR=4
|
50
www/apache13-modssl/files/patch-ae
Normal file
50
www/apache13-modssl/files/patch-ae
Normal file
|
@ -0,0 +1,50 @@
|
|||
*** src/support/log_server_status.orig Tue Mar 31 16:53:50 1998
|
||||
--- src/support/log_server_status Tue Apr 21 17:18:10 1998
|
||||
***************
|
||||
*** 67,76 ****
|
||||
#
|
||||
require 'sys/socket.ph';
|
||||
|
||||
! $wherelog = "/var/log/graph/"; # Logs will be like "/var/log/graph/960312"
|
||||
$server = "localhost"; # Name of server, could be "www.foo.com"
|
||||
$port = "80"; # Port on server
|
||||
! $request = "/status/?auto"; # Request to send
|
||||
|
||||
sub tcp_connect
|
||||
{
|
||||
--- 67,76 ----
|
||||
#
|
||||
require 'sys/socket.ph';
|
||||
|
||||
! $wherelog = "/var/log/httpd-status-"; # Logs will be like "/var/log/graph/960312"
|
||||
$server = "localhost"; # Name of server, could be "www.foo.com"
|
||||
$port = "80"; # Port on server
|
||||
! $request = "/server-status/?auto"; # Request to send
|
||||
|
||||
sub tcp_connect
|
||||
{
|
||||
***************
|
||||
*** 93,103 ****
|
||||
### Main
|
||||
|
||||
{
|
||||
! $date=`date +%y%m%d:%H%M%S`;
|
||||
chop($date);
|
||||
($day,$time)=split(/:/,$date);
|
||||
$res=&tcp_connect($server,$port);
|
||||
! open(OUT,">>$wherelog$day");
|
||||
if ($res) {
|
||||
print OUT "$time:-1:-1:-1:-1:$res\n";
|
||||
exit 1;
|
||||
--- 93,103 ----
|
||||
### Main
|
||||
|
||||
{
|
||||
! $date=`LC_TIME=C date +%y%m%d:%H%M%S`;
|
||||
chop($date);
|
||||
($day,$time)=split(/:/,$date);
|
||||
$res=&tcp_connect($server,$port);
|
||||
! open(OUT,">>$wherelog$day.log");
|
||||
if ($res) {
|
||||
print OUT "$time:-1:-1:-1:-1:$res\n";
|
||||
exit 1;
|
1
www/apache13-modssl/pkg-comment
Normal file
1
www/apache13-modssl/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
The popular Apache HTTP server with SSL extension.
|
15
www/apache13-modssl/pkg-descr
Normal file
15
www/apache13-modssl/pkg-descr
Normal file
|
@ -0,0 +1,15 @@
|
|||
Apache 1.3 + mod_ssl 2.0
|
||||
========================
|
||||
|
||||
Apache is an HTTP server designed as a plug-in replacement for the NCSA server
|
||||
version 1.3 (or 1.4). It fixes numerous bugs in the NCSA server and includes
|
||||
many frequently requested new features, and has an API which allows it to be
|
||||
extended to meet users' needs more easily. This version is also SSL-aware by
|
||||
the help of the mod_ssl module which interfaces Apache to the SSLeay
|
||||
encryption library.
|
||||
|
||||
All the documentation can be found on-line on the Web:
|
||||
|
||||
o Apache: http://www.apache.org/
|
||||
o mod_ssl: http://www.engelschall.com/sw/mod_ssl/
|
||||
o SSLeay: http://www.ssleay.org/
|
274
www/apache13-modssl/pkg-plist
Normal file
274
www/apache13-modssl/pkg-plist
Normal file
|
@ -0,0 +1,274 @@
|
|||
bin/dbmmanage
|
||||
bin/htdigest
|
||||
bin/htpasswd
|
||||
etc/apache/access.conf.default
|
||||
etc/apache/httpd.conf.default
|
||||
etc/apache/magic.default
|
||||
etc/apache/mime.types.default
|
||||
etc/apache/srm.conf.default
|
||||
etc/apache/sslcerts/Makefile
|
||||
etc/apache/sslcerts/server.pem
|
||||
etc/rc.d/apache.sh
|
||||
include/apache/alloc.h
|
||||
include/apache/ap.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_md5.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.h
|
||||
include/apache/rfc1413.h
|
||||
include/apache/scoreboard.h
|
||||
include/apache/util_date.h
|
||||
include/apache/util_md5.h
|
||||
include/apache/util_script.h
|
||||
include/apache/util_uri.h
|
||||
libexec/apache/libproxy.so
|
||||
libexec/apache/mod_auth_anon.so
|
||||
libexec/apache/mod_auth_db.so
|
||||
libexec/apache/mod_cern_meta.so
|
||||
libexec/apache/mod_digest.so
|
||||
libexec/apache/mod_expires.so
|
||||
libexec/apache/mod_headers.so
|
||||
libexec/apache/mod_info.so
|
||||
libexec/apache/mod_mime_magic.so
|
||||
libexec/apache/mod_rewrite.so
|
||||
libexec/apache/mod_speling.so
|
||||
libexec/apache/mod_status.so
|
||||
libexec/apache/mod_unique_id.so
|
||||
libexec/apache/mod_usertrack.so
|
||||
sbin/ab
|
||||
sbin/apachectl
|
||||
sbin/apxs
|
||||
sbin/httpd
|
||||
sbin/logresolve
|
||||
sbin/rotatelogs
|
||||
sbin/ssl_gcache
|
||||
share/doc/apache/apache_pb.gif
|
||||
share/doc/apache/index.html
|
||||
share/doc/apache/manual/LICENSE
|
||||
share/doc/apache/manual/bind.html
|
||||
share/doc/apache/manual/cgi_path.html
|
||||
share/doc/apache/manual/content-negotiation.html
|
||||
share/doc/apache/manual/custom-error.html
|
||||
share/doc/apache/manual/dns-caveats.html
|
||||
share/doc/apache/manual/dso.html
|
||||
share/doc/apache/manual/ebcdic.html
|
||||
share/doc/apache/manual/env.html
|
||||
share/doc/apache/manual/footer.html
|
||||
share/doc/apache/manual/handler.html
|
||||
share/doc/apache/manual/header.html
|
||||
share/doc/apache/manual/images/custom_errordocs.gif
|
||||
share/doc/apache/manual/images/home.gif
|
||||
share/doc/apache/manual/images/index.gif
|
||||
share/doc/apache/manual/images/mod_rewrite_fig1.fig
|
||||
share/doc/apache/manual/images/mod_rewrite_fig1.gif
|
||||
share/doc/apache/manual/images/mod_rewrite_fig2.fig
|
||||
share/doc/apache/manual/images/mod_rewrite_fig2.gif
|
||||
share/doc/apache/manual/images/mod_ssl.jpg
|
||||
share/doc/apache/manual/images/ssleay.gif
|
||||
share/doc/apache/manual/images/sub.gif
|
||||
share/doc/apache/manual/index.html
|
||||
share/doc/apache/manual/install.html
|
||||
share/doc/apache/manual/invoking.html
|
||||
share/doc/apache/manual/keepalive.html
|
||||
share/doc/apache/manual/location.html
|
||||
share/doc/apache/manual/man-template.html
|
||||
share/doc/apache/manual/misc/API.html
|
||||
share/doc/apache/manual/misc/FAQ.html
|
||||
share/doc/apache/manual/misc/HTTP_Features.tsv
|
||||
share/doc/apache/manual/misc/client_block_api.html
|
||||
share/doc/apache/manual/misc/compat_notes.html
|
||||
share/doc/apache/manual/misc/custom_errordocs.html
|
||||
share/doc/apache/manual/misc/descriptors.html
|
||||
share/doc/apache/manual/misc/fin_wait_2.html
|
||||
share/doc/apache/manual/misc/footer.html
|
||||
share/doc/apache/manual/misc/header.html
|
||||
share/doc/apache/manual/misc/howto.html
|
||||
share/doc/apache/manual/misc/index.html
|
||||
share/doc/apache/manual/misc/known_client_problems.html
|
||||
share/doc/apache/manual/misc/nopgp.html
|
||||
share/doc/apache/manual/misc/perf-bsd44.html
|
||||
share/doc/apache/manual/misc/perf-dec.html
|
||||
share/doc/apache/manual/misc/perf-hp.html
|
||||
share/doc/apache/manual/misc/perf-tuning.html
|
||||
share/doc/apache/manual/misc/perf.html
|
||||
share/doc/apache/manual/misc/security_tips.html
|
||||
share/doc/apache/manual/misc/vif-info.html
|
||||
share/doc/apache/manual/misc/windoz_keepalive.html
|
||||
share/doc/apache/manual/mod/core.html
|
||||
share/doc/apache/manual/mod/directive-dict.html
|
||||
share/doc/apache/manual/mod/directives.html
|
||||
share/doc/apache/manual/mod/footer.html
|
||||
share/doc/apache/manual/mod/header.html
|
||||
share/doc/apache/manual/mod/index.html
|
||||
share/doc/apache/manual/mod/mod_access.html
|
||||
share/doc/apache/manual/mod/mod_actions.html
|
||||
share/doc/apache/manual/mod/mod_alias.html
|
||||
share/doc/apache/manual/mod/mod_asis.html
|
||||
share/doc/apache/manual/mod/mod_auth.html
|
||||
share/doc/apache/manual/mod/mod_auth_anon.html
|
||||
share/doc/apache/manual/mod/mod_auth_db.html
|
||||
share/doc/apache/manual/mod/mod_auth_dbm.html
|
||||
share/doc/apache/manual/mod/mod_autoindex.html
|
||||
share/doc/apache/manual/mod/mod_browser.html
|
||||
share/doc/apache/manual/mod/mod_cern_meta.html
|
||||
share/doc/apache/manual/mod/mod_cgi.html
|
||||
share/doc/apache/manual/mod/mod_cookies.html
|
||||
share/doc/apache/manual/mod/mod_digest.html
|
||||
share/doc/apache/manual/mod/mod_dir.html
|
||||
share/doc/apache/manual/mod/mod_dld.html
|
||||
share/doc/apache/manual/mod/mod_dll.html
|
||||
share/doc/apache/manual/mod/mod_env.html
|
||||
share/doc/apache/manual/mod/mod_example.html
|
||||
share/doc/apache/manual/mod/mod_expires.html
|
||||
share/doc/apache/manual/mod/mod_headers.html
|
||||
share/doc/apache/manual/mod/mod_imap.html
|
||||
share/doc/apache/manual/mod/mod_include.html
|
||||
share/doc/apache/manual/mod/mod_info.html
|
||||
share/doc/apache/manual/mod/mod_isapi.html
|
||||
share/doc/apache/manual/mod/mod_log_agent.html
|
||||
share/doc/apache/manual/mod/mod_log_common.html
|
||||
share/doc/apache/manual/mod/mod_log_config.html
|
||||
share/doc/apache/manual/mod/mod_log_referer.html
|
||||
share/doc/apache/manual/mod/mod_mime.html
|
||||
share/doc/apache/manual/mod/mod_mime_magic.html
|
||||
share/doc/apache/manual/mod/mod_mmap_static.html
|
||||
share/doc/apache/manual/mod/mod_negotiation.html
|
||||
share/doc/apache/manual/mod/mod_proxy.html
|
||||
share/doc/apache/manual/mod/mod_rewrite.html
|
||||
share/doc/apache/manual/mod/mod_setenvif.html
|
||||
share/doc/apache/manual/mod/mod_so.html
|
||||
share/doc/apache/manual/mod/mod_speling.html
|
||||
share/doc/apache/manual/mod/mod_ssl.html
|
||||
share/doc/apache/manual/mod/mod_status.html
|
||||
share/doc/apache/manual/mod/mod_unique_id.html
|
||||
share/doc/apache/manual/mod/mod_userdir.html
|
||||
share/doc/apache/manual/mod/mod_usertrack.html
|
||||
share/doc/apache/manual/multilogs.html
|
||||
share/doc/apache/manual/new_features_1_0.html
|
||||
share/doc/apache/manual/new_features_1_1.html
|
||||
share/doc/apache/manual/new_features_1_2.html
|
||||
share/doc/apache/manual/new_features_1_3.html
|
||||
share/doc/apache/manual/process-model.html
|
||||
share/doc/apache/manual/sections.html
|
||||
share/doc/apache/manual/sourcereorg.html
|
||||
share/doc/apache/manual/stopping.html
|
||||
share/doc/apache/manual/suexec.html
|
||||
share/doc/apache/manual/unixware.html
|
||||
share/doc/apache/manual/upgrading_to_1_3.html
|
||||
share/doc/apache/manual/vhosts/details.html
|
||||
share/doc/apache/manual/vhosts/details_1_2.html
|
||||
share/doc/apache/manual/vhosts/examples.html
|
||||
share/doc/apache/manual/vhosts/fd-limits.html
|
||||
share/doc/apache/manual/vhosts/footer.html
|
||||
share/doc/apache/manual/vhosts/header.html
|
||||
share/doc/apache/manual/vhosts/host.html
|
||||
share/doc/apache/manual/vhosts/index.html
|
||||
share/doc/apache/manual/vhosts/ip-based.html
|
||||
share/doc/apache/manual/vhosts/name-based.html
|
||||
share/doc/apache/manual/vhosts/vhosts-in-depth.html
|
||||
share/doc/apache/manual/vhosts/virtual-host.html
|
||||
share/doc/apache/manual/windows.html
|
||||
www/cgi-bin.default/printenv
|
||||
www/cgi-bin.default/test-cgi
|
||||
www/icons/README
|
||||
www/icons/a.gif
|
||||
www/icons/alert.black.gif
|
||||
www/icons/alert.red.gif
|
||||
www/icons/apache_pb.gif
|
||||
www/icons/back.gif
|
||||
www/icons/ball.gray.gif
|
||||
www/icons/ball.red.gif
|
||||
www/icons/binary.gif
|
||||
www/icons/binhex.gif
|
||||
www/icons/blank.gif
|
||||
www/icons/bomb.gif
|
||||
www/icons/box1.gif
|
||||
www/icons/box2.gif
|
||||
www/icons/broken.gif
|
||||
www/icons/burst.gif
|
||||
www/icons/c.gif
|
||||
www/icons/comp.blue.gif
|
||||
www/icons/comp.gray.gif
|
||||
www/icons/compressed.gif
|
||||
www/icons/continued.gif
|
||||
www/icons/dir.gif
|
||||
www/icons/down.gif
|
||||
www/icons/dvi.gif
|
||||
www/icons/f.gif
|
||||
www/icons/folder.gif
|
||||
www/icons/folder.open.gif
|
||||
www/icons/folder.sec.gif
|
||||
www/icons/forward.gif
|
||||
www/icons/generic.gif
|
||||
www/icons/generic.red.gif
|
||||
www/icons/generic.sec.gif
|
||||
www/icons/hand.right.gif
|
||||
www/icons/hand.up.gif
|
||||
www/icons/icon.sheet.gif
|
||||
www/icons/image1.gif
|
||||
www/icons/image2.gif
|
||||
www/icons/image3.gif
|
||||
www/icons/index.gif
|
||||
www/icons/layout.gif
|
||||
www/icons/left.gif
|
||||
www/icons/link.gif
|
||||
www/icons/movie.gif
|
||||
www/icons/p.gif
|
||||
www/icons/patch.gif
|
||||
www/icons/pdf.gif
|
||||
www/icons/pie0.gif
|
||||
www/icons/pie1.gif
|
||||
www/icons/pie2.gif
|
||||
www/icons/pie3.gif
|
||||
www/icons/pie4.gif
|
||||
www/icons/pie5.gif
|
||||
www/icons/pie6.gif
|
||||
www/icons/pie7.gif
|
||||
www/icons/pie8.gif
|
||||
www/icons/portal.gif
|
||||
www/icons/ps.gif
|
||||
www/icons/quill.gif
|
||||
www/icons/right.gif
|
||||
www/icons/screw1.gif
|
||||
www/icons/screw2.gif
|
||||
www/icons/script.gif
|
||||
www/icons/sound1.gif
|
||||
www/icons/sound2.gif
|
||||
www/icons/sphere1.gif
|
||||
www/icons/sphere2.gif
|
||||
www/icons/tar.gif
|
||||
www/icons/tex.gif
|
||||
www/icons/text.gif
|
||||
www/icons/transfer.gif
|
||||
www/icons/unknown.gif
|
||||
www/icons/up.gif
|
||||
www/icons/uu.gif
|
||||
www/icons/uuencoded.gif
|
||||
www/icons/world1.gif
|
||||
www/icons/world2.gif
|
||||
@exec mkdir -p %D/www/proxy
|
||||
@exec ln -fs %B %D/www/data.default
|
||||
@exec cd %D/etc/apache/sslcerts/ && make >/dev/null 2>&1
|
||||
@exec mkdir -p %D/etc/apache/sslkeys
|
||||
@unexec rm -f %D/www/data.default
|
||||
@unexec rm -f %D/etc/apache/sslcerts/*.0
|
||||
@dirrm %D/etc/apache/sslcerts
|
||||
@dirrm %D/etc/apache/sslkeys
|
Loading…
Reference in a new issue