1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

mod_jail is Apache 1.3.xx module, that makes running Apache in a secure jail

prison easy, so it is intended to run on FreeBSD only. It is similar to
mod_chroot, but uses FreeBSD's specific system call - jail. Also mod_jail make
it possible to change securelevel into jail prison.

WWW: http://igorpopov.newmail.ru/mod_jail/

PR:		ports/104135
Submitted by:	Frank J. Laszlo <laszlof@vonostingroup.com>
This commit is contained in:
Pav Lucistnik 2006-10-07 22:09:32 +00:00
parent 384e66ad67
commit 04c70b4d43
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=174866
4 changed files with 50 additions and 0 deletions

View File

@ -338,6 +338,7 @@
SUBDIR += mod_hosts_access
SUBDIR += mod_index_rss
SUBDIR += mod_injection
SUBDIR += mod_jail
SUBDIR += mod_jk
SUBDIR += mod_jk-apache2
SUBDIR += mod_jk2

40
www/mod_jail/Makefile Normal file
View File

@ -0,0 +1,40 @@
# New ports collection makefile for: mod_jail
# Date created: Oct 7 2005
# Whom: Frank Laszlo <laszlof@vonostingroup.com>
#
# $FreeBSD$
#
PORTNAME= mod_jail
PORTVERSION= 0.1
CATEGORIES= www
MASTER_SITES= http://igorpopov.newmail.ru/
MAINTAINER= laszlof@vonostingroup.com
COMMENT= Apache 1.3.x module to enable an easy alternative to mod_chroot
WRKSRC= ${WRKDIR}/mod_jail
USE_APACHE= 1.3
AP_FAST_BUILD= YES
AP_GENPLIST= YES
PORTDOCS= changelog.html documentation.html download.html \
index.html
.include <bsd.port.pre.mk>
post-extract:
@${REINPLACE_CMD} -e "s|= apxs|= ${APXS}|" ${WRKSRC}/Makefile
.if defined(WITH_APACHE2)
IGNORE= only works on Apache 1.3.x
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC}/doc && \
${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>

3
www/mod_jail/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (mod_jail-0.1.tar.gz) = be4605b172f69fcea7f6a9d43182b51c
SHA256 (mod_jail-0.1.tar.gz) = 145c119db0c17d524ab7ee061f8b8221bb8aa472924066e2814d5e6d860d7f1c
SIZE (mod_jail-0.1.tar.gz) = 12906

6
www/mod_jail/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
mod_jail is Apache 1.3.xx module, that makes running Apache in a secure jail
prison easy, so it is intended to run on FreeBSD only. It is similar to
mod_chroot, but uses FreeBSD's specific system call - jail. Also mod_jail make
it possible to change securelevel into jail prison.
WWW: http://igorpopov.newmail.ru/mod_jail/