Add mod_log_data 0.0.3, module for Apache 2.0 to log incoming and

outgoing data.

mod_log_data is a module for Apache 2.0, logging incoming and outgoing
data.
This module can be used for debug or for security.
This beta version include one filter dumping the POST data for an
incoming request, and a filter dumping the outgoing data.

WWW: http://loghttp.sourceforge.net/

PR:		ports/57661
This commit is contained in:
Clement Laforet 2004-02-26 16:42:03 +00:00
parent 4094dc43bf
commit dc5eb9e2d5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102209
5 changed files with 46 additions and 0 deletions

View File

@ -242,6 +242,7 @@
SUBDIR += mod_layout2
SUBDIR += mod_limitipconn
SUBDIR += mod_limitipconn2
SUBDIR += mod_log_data
SUBDIR += mod_log_sql
SUBDIR += mod_macro
SUBDIR += mod_mp3

33
www/mod_log_data/Makefile Normal file
View File

@ -0,0 +1,33 @@
# New ports collection makefile for: mod_log_data
# Date created: Sun Oct 5
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#
PORTNAME= mod_log_data
PORTVERSION= 0.0.3
CATEGORIES= www
MASTER_SITES= http://loghttp.sourceforge.net/files/
MAINTAINER= sheepkiller@cultdeadsheep.org
COMMENT= Module for Apache 2.0 to log incoming and outgoing data
BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache2
RUN_DEPENDS= ${BUILD_DEPENDS}
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_APACHE= YES
WITH_APACHE2= YES
.include <bsd.port.pre.mk>
ONLY_FOR_ARCHS= i386
do-build:
@(cd ${WRKSRC} && ${APXS} -c ${PORTNAME}.c)
do-install:
@(cd ${WRKSRC} && ${APXS} -A -i ${PORTNAME}.la)
.include <bsd.port.post.mk>

View File

@ -0,0 +1 @@
MD5 (mod_log_data-0.0.3.tar.gz) = 473a72701cf1db6671a114f086f60af1

View File

@ -0,0 +1,7 @@
mod_log_data is a module for Apache 2.0, logging incoming and outgoing
data.
This module can be used for debug or for security.
This beta version include one filter dumping the POST data for an
incoming request, and a filter dumping the outgoing data.
WWW: http://loghttp.sourceforge.net/

View File

@ -0,0 +1,4 @@
libexec/apache2/mod_log_data.so
@exec %D/sbin/apxs -e -a -n log_data %D/%f
@unexec %D/sbin/apxs -e -a -n log_data %D/%f
@unexec echo "===> If you do not plan on reinstalling mod_log_data, you must manually remove"; echo "===> references to it in httpd.conf."