diff options
author | ohauer <ohauer@FreeBSD.org> | 2014-10-27 02:17:17 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2014-10-27 02:17:17 +0800 |
commit | f11f8d26db3e61f79dd1920c53f6c62c612797b0 (patch) | |
tree | f61e5ce7014135472143ac50360a68a98c453c4a | |
parent | 1c3df07adcb097ae78610404b45335a9a6740e8a (diff) | |
download | freebsd-ports-gnome-f11f8d26db3e61f79dd1920c53f6c62c612797b0.tar.gz freebsd-ports-gnome-f11f8d26db3e61f79dd1920c53f6c62c612797b0.tar.zst freebsd-ports-gnome-f11f8d26db3e61f79dd1920c53f6c62c612797b0.zip |
- new port mod_authz_unixgroup for Apache 2.4.x
Mod_Authz_Unixgroup 1.1.x is a unix group access control modules for Apache
version 2.4. If you have Apache 2.2 you should be using version 1.0.x of
this module instead.
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: 194322
Submitted by: mwisnicki+freebsd@gmail.com
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/mod_authz_unixgroup24/Makefile | 22 | ||||
-rw-r--r-- | www/mod_authz_unixgroup24/distinfo | 2 | ||||
-rw-r--r-- | www/mod_authz_unixgroup24/pkg-descr | 10 |
4 files changed, 35 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 86d0798b5ff2..227b3d413f24 100644 --- a/www/Makefile +++ b/www/Makefile @@ -436,6 +436,7 @@ SUBDIR += mod_authnz_external22 SUBDIR += mod_authnz_external24 SUBDIR += mod_authz_unixgroup + SUBDIR += mod_authz_unixgroup24 SUBDIR += mod_backtrace SUBDIR += mod_bw SUBDIR += mod_cband diff --git a/www/mod_authz_unixgroup24/Makefile b/www/mod_authz_unixgroup24/Makefile new file mode 100644 index 000000000000..23091a78bab2 --- /dev/null +++ b/www/mod_authz_unixgroup24/Makefile @@ -0,0 +1,22 @@ +# Created by: Will Stacey <will@at.org> +# $FreeBSD$ + +PORTNAME= mod_authz_unixgroup +PORTVERSION= 1.1.0 +CATEGORIES= www +MASTER_SITES= http://mod-auth-external.googlecode.com/files/ +DIST_SUBDIR= apache2 + +MAINTAINER= apache@FreeBSD.org +COMMENT= UNIX group access control module for Apache 2.4 + +LICENSE= APACHE20 + +PORTSCOUT= limit:^1\.1\. + +USE_APACHE= 24 +AP_FAST_BUILD= yes +AP_GENPLIST= yes +SHORTMODNAME= authz_unixgroup + +.include <bsd.port.mk> diff --git a/www/mod_authz_unixgroup24/distinfo b/www/mod_authz_unixgroup24/distinfo new file mode 100644 index 000000000000..ad9bf8648a5c --- /dev/null +++ b/www/mod_authz_unixgroup24/distinfo @@ -0,0 +1,2 @@ +SHA256 (apache2/mod_authz_unixgroup-1.1.0.tar.gz) = 10ab77a500e3548924eaf906058735695f1faacb03721ff10a1d460abbf90987 +SIZE (apache2/mod_authz_unixgroup-1.1.0.tar.gz) = 9975 diff --git a/www/mod_authz_unixgroup24/pkg-descr b/www/mod_authz_unixgroup24/pkg-descr new file mode 100644 index 000000000000..fe4b1ec0697d --- /dev/null +++ b/www/mod_authz_unixgroup24/pkg-descr @@ -0,0 +1,10 @@ +Mod_Authz_Unixgroup 1.1.x is a unix group access control modules for Apache +version 2.4. If you have Apache 2.2 you should be using version 1.0.x of +this module instead. + +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/ |