diff options
author | pav <pav@FreeBSD.org> | 2007-07-29 19:42:05 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-07-29 19:42:05 +0800 |
commit | db9588db5b314934ff88b08112d60d68cb54657c (patch) | |
tree | 8e3942742497595cf6e903ae5b9c097f69502bda /www | |
parent | 4abbb7b87d2d94b0e67b09a12167fc7aed15f03c (diff) | |
download | freebsd-ports-gnome-db9588db5b314934ff88b08112d60d68cb54657c.tar.gz freebsd-ports-gnome-db9588db5b314934ff88b08112d60d68cb54657c.tar.zst freebsd-ports-gnome-db9588db5b314934ff88b08112d60d68cb54657c.zip |
This is a port of mod_authz_unixgroup for apache22, written by Jan Wolter.
Mod_Authz_Unixgroup is a unix group access control modules for Apache 2.1 and
later. If you are having users authenticate with real Unix login ID over the
net, using something like my mod_authnz_external / pwauth combination, and you
want to do access control based on unix group membership, then
mod_authz_unixgroup is exactly what you need.
WWW: http://www.unixpapa.com/mod_authz_unixgroup/
PR: ports/114717
Submitted by: Will Stacey <will@at.org>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/mod_authz_unixgroup/Makefile | 21 | ||||
-rw-r--r-- | www/mod_authz_unixgroup/distinfo | 3 | ||||
-rw-r--r-- | www/mod_authz_unixgroup/pkg-descr | 9 |
4 files changed, 34 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 09440548b251..19b71c5763d3 100644 --- a/www/Makefile +++ b/www/Makefile @@ -337,6 +337,7 @@ SUBDIR += mod_auth_xradius SUBDIR += mod_authenticache SUBDIR += mod_authnz_external + SUBDIR += mod_authz_unixgroup SUBDIR += mod_backhand SUBDIR += mod_bandwidth SUBDIR += mod_bf diff --git a/www/mod_authz_unixgroup/Makefile b/www/mod_authz_unixgroup/Makefile new file mode 100644 index 000000000000..13b620d00e68 --- /dev/null +++ b/www/mod_authz_unixgroup/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: mod_authz_unixgroup +# Date created: July 18, 2007 +# Whom: Will Stacey <will@at.org> +# +# $FreeBSD$ +# + +PORTNAME= mod_authz_unixgroup +PORTVERSION= 1.0.0 +CATEGORIES= www +MASTER_SITES= http://www.unixpapa.com/software/ + +MAINTAINER= will@at.org +COMMENT= A unix group access control module for Apache 2.1 and later + +USE_APACHE= 22+ +AP_FAST_BUILD= YES +AP_GENPLIST= YES +SHORTMODNAME= mod_authz_unixgroup + +.include <bsd.port.mk> diff --git a/www/mod_authz_unixgroup/distinfo b/www/mod_authz_unixgroup/distinfo new file mode 100644 index 000000000000..930bd36e535a --- /dev/null +++ b/www/mod_authz_unixgroup/distinfo @@ -0,0 +1,3 @@ +MD5 (mod_authz_unixgroup-1.0.0.tar.gz) = a75431674a09f468e5c39707c779a7c5 +SHA256 (mod_authz_unixgroup-1.0.0.tar.gz) = f05682bcd3dc888a0fa9d1807ecc83ac2f3706a4e7aaeaefb7149b95ef40cccd +SIZE (mod_authz_unixgroup-1.0.0.tar.gz) = 108901 diff --git a/www/mod_authz_unixgroup/pkg-descr b/www/mod_authz_unixgroup/pkg-descr new file mode 100644 index 000000000000..8d08eb1fc327 --- /dev/null +++ b/www/mod_authz_unixgroup/pkg-descr @@ -0,0 +1,9 @@ +This is a port of mod_authz_unixgroup for apache22, written by Jan Wolter. + +Mod_Authz_Unixgroup is a unix group access control modules for Apache 2.1 and +later. If you are having users authenticate with real Unix login ID over the +net, using something like my mod_authnz_external / pwauth combination, and you +want to do access control based on unix group membership, then +mod_authz_unixgroup is exactly what you need. + +WWW: http://www.unixpapa.com/mod_authz_unixgroup/ |