Add missing semicolons to the group directives samples

This commit is contained in:
Colin Leroy-Mira 2020-04-14 13:54:29 +02:00
parent 47375fce1e
commit 6058b1aed0
1 changed files with 4 additions and 4 deletions

View File

@ -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:
```
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-GroupLimit "group1"
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-GroupLimit "group1";
```
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: