From eb2cc7519c835511d969681e444863eadbb4d00a Mon Sep 17 00:00:00 2001 From: Brian (bex) Exelbierd Date: Jul 29 2018 08:39:46 +0000 Subject: fix antora build warns by escaping fake-macros --- diff --git a/modules/system-administrators-guide/pages/_partials/servers/OpenLDAP.adoc b/modules/system-administrators-guide/pages/_partials/servers/OpenLDAP.adoc index 2f3a5df..7753037 100644 --- a/modules/system-administrators-guide/pages/_partials/servers/OpenLDAP.adoc +++ b/modules/system-administrators-guide/pages/_partials/servers/OpenLDAP.adoc @@ -433,8 +433,8 @@ olcWriteTimeout: 180 [[s3-ldap-configuration-database]] ====== Changing the Database-Specific Configuration -indexterm:[OpenLDAP,configuration,database]indexterm:[OpenLDAP,files,/etc/openldap/slapd.d/cn=config/olcDatabase={1}bdb.ldif] -By default, the OpenLDAP server uses Berkeley DB (BDB) as a database back end. The configuration for this database is stored in the `/etc/openldap/slapd.d/cn=config/olcDatabase={1}bdb.ldif` file. The following directives are commonly used in a database-specific configuration: +indexterm:[OpenLDAP,configuration,database]indexterm:[OpenLDAP,files,/etc/openldap/slapd.d/cn=config/olcDatabase=\{1}bdb.ldif] +By default, the OpenLDAP server uses Berkeley DB (BDB) as a database back end. The configuration for this database is stored in the `/etc/openldap/slapd.d/cn=config/olcDatabase=\{1}bdb.ldif` file. The following directives are commonly used in a database-specific configuration: indexterm:[OpenLDAP,directives,olcReadOnly] [option]`olcReadOnly`:: The [option]`olcReadOnly` directive allows you to use the database in a read-only mode. It takes the following form: + @@ -490,7 +490,7 @@ It accepts either a plain text string, or a hash. To generate a hash, type the f ~]${nbsp}pass:attributes[{blank}][command]#slappaswd# New password: Re-enter new password: -{SSHA}WczWsyPEnMchFf1GRTweq2q7XJcvmSxD +\{SSHA}WczWsyPEnMchFf1GRTweq2q7XJcvmSxD ---- [[example-ldap-configuration-olcrootpw]] @@ -499,7 +499,7 @@ Re-enter new password: [subs="quotes"] ---- -olcRootPW: {SSHA}WczWsyPEnMchFf1GRTweq2q7XJcvmSxD +olcRootPW: \{SSHA}WczWsyPEnMchFf1GRTweq2q7XJcvmSxD ---- ==== diff --git a/modules/system-administrators-guide/pages/_partials/servers/The_Apache_HTTP_Server.adoc b/modules/system-administrators-guide/pages/_partials/servers/The_Apache_HTTP_Server.adoc index be9b680..5aa161d 100644 --- a/modules/system-administrators-guide/pages/_partials/servers/The_Apache_HTTP_Server.adoc +++ b/modules/system-administrators-guide/pages/_partials/servers/The_Apache_HTTP_Server.adoc @@ -1405,7 +1405,7 @@ The _format_ is a string consisting of options as described in xref:Web_Servers. |[option]`%s`|Represents the status code. |[option]`%t`|Represents the date and time of the request. |[option]`%u`|If the authentication is required, it represents the remote user. If not, a hyphen (that is, `-`) is used instead. -|[option]`%{pass:attributes[{blank}]_field_pass:attributes[{blank}]}`|Represents the content of the HTTP header _field_. The common options include [option]`%{Referer}` (the URL of the web page that referred the client to the server) and [option]`%{User-Agent}` (the type of the web browser making the request). +|[option]`%{pass:attributes[{blank}]_field_pass:attributes[{blank}]}`|Represents the content of the HTTP header _field_. The common options include [option]`%\{Referer}` (the URL of the web page that referred the client to the server) and [option]`%\{User-Agent}` (the type of the web browser making the request). |=== [[example-apache-httpdconf-logformat]]