1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

This module sets httpd process titles to reflect the request currently

processed, so they will be visible in top(1) or ps(1). Useful for
debugging purposes.

Author:	Stanislav Sedov <stas@FreeBSD.org>
This commit is contained in:
Stanislav Sedov 2007-04-15 11:11:16 +00:00
parent 542c6cadfe
commit 14f652a60d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=189997
4 changed files with 34 additions and 0 deletions

View File

@ -380,6 +380,7 @@
SUBDIR += mod_ntlm
SUBDIR += mod_perl
SUBDIR += mod_perl2
SUBDIR += mod_proctitle
SUBDIR += mod_proxy_add_forward
SUBDIR += mod_proxy_html
SUBDIR += mod_proxy_xml

View File

@ -0,0 +1,25 @@
# New ports collection makefile for: mod_proctitle
# Date created: 15 April 2007
# Whom: stas
#
# $FreeBSD$
#
PORTNAME= mod_proctitle
PORTVERSION= 0.2
CATEGORIES= www
MASTER_SITES= ftp://ftp.springdaemons.com/soft/
MAINTAINER= stas@FreeBSD.org
COMMENT= Set httpd process titles to reflect currently processed request
USE_APACHE?= 2.0+
GNU_CONFIGURE= yes
USE_BZIP2= yes
PLIST_FILES= ${APACHEMODDIR}/${PORTNAME}.so
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/.libs/mod_proctitle.so \
${PREFIX}/${APACHEMODDIR}/
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (mod_proctitle-0.2.tar.bz2) = efd63c4ba7ee40dcf24e5b91e2d29335
SHA256 (mod_proctitle-0.2.tar.bz2) = 5890646cfb5eb42f5aae445ba814c96519bdaefea79df883d6610287bec29519
SIZE (mod_proctitle-0.2.tar.bz2) = 202806

View File

@ -0,0 +1,5 @@
This module sets httpd process titles to reflect the request currently
processed, so they will be visible in top(1) or ps(1). Useful for
debugging purposes.
Author: Stanislav Sedov <stas@FreeBSD.org>