From 6058b1aed032abdcfa6cabf01982e8f9ef5e10f0 Mon Sep 17 00:00:00 2001 From: Colin Leroy-Mira Date: Tue, 14 Apr 2020 13:54:29 +0200 Subject: [PATCH] Add missing semicolons to the group directives samples --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 61912e9..7f83b61 100644 --- a/README.md +++ b/README.md @@ -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: