Add missing semicolons to the group directives samples
This commit is contained in:
parent
47375fce1e
commit
6058b1aed0
|
|
@ -127,15 +127,15 @@ The search filters can be combined from less complex filters using boolean opera
|
||||||
If your LDAP server doesn't support the memberOf overlay, you can use the following parameters:
|
If your LDAP server doesn't support the memberOf overlay, you can use the following parameters:
|
||||||
|
|
||||||
```
|
```
|
||||||
proxy_set_header X-Ldap-GroupBaseDN "ou=groups,dc=example,dc=com"
|
proxy_set_header X-Ldap-GroupBaseDN "ou=groups,dc=example,dc=com";
|
||||||
proxy_set_header X-Ldap-GroupTemplate "(cn=%(groupname)s)"
|
proxy_set_header X-Ldap-GroupTemplate "(cn=%(groupname)s)";
|
||||||
proxy_set_header X-Ldap-GroupLimit "group1"
|
proxy_set_header X-Ldap-GroupLimit "group1";
|
||||||
```
|
```
|
||||||
|
|
||||||
The limit can be done on multiple groups using:
|
The limit can be done on multiple groups using:
|
||||||
|
|
||||||
```
|
```
|
||||||
proxy_set_header X-Ldap-GroupLimit "group1,group2"
|
proxy_set_header X-Ldap-GroupLimit "group1,group2";
|
||||||
```
|
```
|
||||||
|
|
||||||
The reference implementation uses cookie-based authentication. If you are using HTTP basic authentication instead, comment out the following directives as shown:
|
The reference implementation uses cookie-based authentication. If you are using HTTP basic authentication instead, comment out the following directives as shown:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue