You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
318 B

11 years ago
Alias /phpkisso /opt/phpki/html/
<Location /phpkisso/ca>
PerlHeaderParserHandler My::Package
{
my @users = split(/\s/, getUsersList("phpki"));
foreach my $u (@users){
$OUT .= " SetEnvIf Auth-User \"$u\" allow_phpki\n";
}
}
order deny,allow
deny from all
allow from env=allow_phpki
</Location>