| 19 | |
| 20 | To restrict access to a specific group use 'require ldap-group' with the full LDAP group ID: |
| 21 | {{{ |
| 22 | <Location /> |
| 23 | Order allow,deny |
| 24 | Allow from all |
| 25 | Satisfy all |
| 26 | |
| 27 | AuthType Basic |
| 28 | AuthBasicProvider ldap |
| 29 | AuthLDAPURL "ldaps://sfldap0.anu.edu.au/ou=People,dc=apac,dc=edu,dc=au?uid" |
| 30 | AuthName "Please enter your NCI credentials" |
| 31 | Require ldap-group cn=access,ou=Group,dc=apac,dc=edu,dc=au |
| 32 | AuthLDAPGroupAttribute memberUid |
| 33 | AuthLDAPGroupAttributeIsDN off |
| 34 | |
| 35 | </Location> |
| 36 | }}} |
| 37 | |