]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
cleanups and typos
authorAlan T. DeKok <aland@freeradius.org>
Tue, 27 Aug 2019 13:26:21 +0000 (09:26 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 27 Aug 2019 13:35:42 +0000 (09:35 -0400)
doc/antora/modules/howto/pages/modules/ldap_docker.adoc
doc/antora/modules/howto/pages/modules/ldap_search.adoc

index 28e85e973bcccb293e8f3778949ca59ab9d4e070..6a5d21d0e312bd5106f4c6416de86702da4753dc 100644 (file)
@@ -1,4 +1,4 @@
-= Using LDAP in Docket
+= Using LDAP in Docker
 
 It is possible to experiment with a local LDAP server under
 https://docs.docker.com/install/[Docker].  There is a
@@ -37,7 +37,7 @@ If the LDAP server server is stopped, as with `CTRL-C`, then the
 databas will be lost.  All of the steps above will have to be re-done
 the next time the server is started.
 
-In order to make the LDAP database persiste, see the
+In order to make the LDAP database persistent, see the
 https://github.com/osixia/docker-openldap[osixia/openldap
 instructions].
 
index e8f830d613b68ef956a40b77c62ebd34e2236948..4b8364fc3c9603187335e4a8cb3c774d1faa6364 100644 (file)
@@ -1,6 +1,6 @@
 = Testing via `ldapsearch`
 
-Prior to configuring the `ldap` module, the LDAP serve rmust first be
+Prior to configuring the `ldap` module, the LDAP servemust first be
 validated using the `ldapsearch` tool.
 
 [source,shell]
@@ -10,7 +10,8 @@ ldapsearch -H ldaps://ldap.example.com:686 -x -D cn=freeradius,dc=example,dc=com
 
 Where you replace the following as appropriately:
 
-* *`ldaps://ldap.example.com:636`:* location of the LDAP server and how to connect
+* `ldaps://ldap.example.com:636`
+  * location of the LDAP server and how to connect
 
   * `ldaps` is LDAP over SSL and defaults to port `636/tcp`
 
@@ -19,13 +20,16 @@ Where you replace the following as appropriately:
 
   * `ldapi` is for UNIX socket connections
 
-* `cn=freeradius,dc=example,dc=com`:* username used by FreeRADIUS when connecting to LDAP
+* `cn=freeradius,dc=example,dc=com`
+  * username used by FreeRADIUS when connecting to LDAP
 
-* `mypassword`:* password used by FreeRADIUS is to use when connecting to LDAP
+* `mypassword`
+  * password used by FreeRADIUS is to use when connecting to LDAP
 
-* `ou=people,dc=example,dc=com`:* top branch ('base') of the LDAP tree where users are found
+* `ou=people,dc=example,dc=com`
+  * top branch ('base') of the LDAP tree where users are found
 
-* `(objectClass=inetOrgPerson)`:*
+* `(objectClass=inetOrgPerson)`
   http://www.zytrax.com/books/ldap/apa/search.html[search filter]
   which captures the users (this is the LDAP equivalent of the `WHERE`
   clause in SQL)