Add mod_tsunami 1.0, an Apache module which dynamically limits a
site's slot usage.
This commit is contained in:
parent
1e9d64f0b5
commit
efe0058d56
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41248
6 changed files with 39 additions and 0 deletions
|
@ -135,6 +135,7 @@
|
|||
SUBDIR += mod_snake
|
||||
SUBDIR += mod_throttle
|
||||
SUBDIR += mod_ticket
|
||||
SUBDIR += mod_tsunami
|
||||
SUBDIR += mod_zap
|
||||
SUBDIR += momspider
|
||||
SUBDIR += mozilla
|
||||
|
|
27
www/mod_tsunami/Makefile
Normal file
27
www/mod_tsunami/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# New ports collection makefile for: mod_tsunami
|
||||
# Date created: 10 April 2001
|
||||
# Whom: will
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mod_tsunami
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= mod-tsunami
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
|
||||
RUN_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
|
||||
|
||||
APXS?= ${LOCALBASE}/sbin/apxs
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && ${APXS} -c ${PORTNAME}.c
|
||||
|
||||
do-install:
|
||||
${APXS} -i -A -n ${PORTNAME:S/_//g} ${WRKSRC}/${PORTNAME}.so
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/mod_tsunami/distinfo
Normal file
1
www/mod_tsunami/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (mod_tsunami-1.0.tar.gz) = cb37c43cf19db0186abf7870eb9ed335
|
1
www/mod_tsunami/pkg-comment
Normal file
1
www/mod_tsunami/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Apache module which dynamically limits a site's slot usage
|
6
www/mod_tsunami/pkg-descr
Normal file
6
www/mod_tsunami/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
mod_tsunami is an apache module which dynamically limits
|
||||
the number of httpd slots used per main web directories.
|
||||
It is useful if you provide home pages hosting, and don't
|
||||
want one site to use all the resources.
|
||||
|
||||
WWW: http://mod-tsunami.sourceforge.net/
|
3
www/mod_tsunami/pkg-plist
Normal file
3
www/mod_tsunami/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
libexec/apache/mod_tsunami.so
|
||||
@exec %D/sbin/apxs -e -A -n tsunami %D/%F
|
||||
@unexec %D/sbin/apxs -e -A -n tsunami %D/%F
|
Loading…
Reference in a new issue