Add mod_hosts_access 1.0.0, an Apache module that makes Apache respect
hosts.allow and hosts.deny.
This commit is contained in:
parent
1b391e293b
commit
b58e879972
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41244
6 changed files with 38 additions and 0 deletions
|
@ -119,6 +119,7 @@
|
|||
SUBDIR += mod_dtcl
|
||||
SUBDIR += mod_fastcgi
|
||||
SUBDIR += mod_gzip
|
||||
SUBDIR += mod_hosts_access
|
||||
SUBDIR += mod_index_rss
|
||||
SUBDIR += mod_layout
|
||||
SUBDIR += mod_mp3
|
||||
|
|
26
www/mod_hosts_access/Makefile
Normal file
26
www/mod_hosts_access/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: mod_hosts_access
|
||||
# Date created: 10 April 2001
|
||||
# Whom: will
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mod_hosts_access
|
||||
PORTVERSION= 1.0.0
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://www.klomp.org/mod_hosts_access/
|
||||
|
||||
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/mod_//g} ${WRKSRC}/${PORTNAME}.so
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/mod_hosts_access/distinfo
Normal file
1
www/mod_hosts_access/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (mod_hosts_access-1.0.0.tar.gz) = 3720e303cfde50e94586f484a903aa41
|
1
www/mod_hosts_access/pkg-comment
Normal file
1
www/mod_hosts_access/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Apache module that makes Apache respect hosts.allow and hosts.deny
|
6
www/mod_hosts_access/pkg-descr
Normal file
6
www/mod_hosts_access/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
mod_hosts_access allows you to use the hosts.allow and hosts.deny
|
||||
files to configure access to your Apache webserver. This is the
|
||||
stable version 1.0.0. Nothing has changed apart from the homepage
|
||||
and some documentation glitches.
|
||||
|
||||
WWW: http://www.klomp.org/mod_hosts_access/
|
3
www/mod_hosts_access/pkg-plist
Normal file
3
www/mod_hosts_access/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
libexec/apache/mod_hosts_access.so
|
||||
@exec %D/sbin/apxs -e -A -n hosts_access %D/%F
|
||||
@unexec %D/sbin/apxs -e -A -n hosts_access %D/%F
|
Loading…
Reference in a new issue