diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2010-11-03 19:01:44 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2010-11-03 19:01:44 -0500 |
commit | ece317ca9f404e0a6fad93d82beffd73e495cb4c (patch) | |
tree | 44150e77124bd87607c280469ce065e182fcfe25 /doc | |
parent | 378bcbeef00ad842e1a7cbad7358ed1523054843 (diff) | |
download | bcfg2-ece317ca9f404e0a6fad93d82beffd73e495cb4c.tar.gz bcfg2-ece317ca9f404e0a6fad93d82beffd73e495cb4c.tar.bz2 bcfg2-ece317ca9f404e0a6fad93d82beffd73e495cb4c.zip |
doc: Fix indentation errors so that SSLCA docs can build
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/server/plugins/generators/sslca.txt | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/doc/server/plugins/generators/sslca.txt b/doc/server/plugins/generators/sslca.txt index 118a16559..ebc625e11 100644 --- a/doc/server/plugins/generators/sslca.txt +++ b/doc/server/plugins/generators/sslca.txt @@ -70,9 +70,11 @@ path to your key. In this case this would be something like #. Within that directory, create a ``key.xml`` file containing the following: - <KeyInfo> - <Key type="rsa" bits="2048" /> - </KeyInfo> + .. code-block:: xml + + <KeyInfo> + <Key type="rsa" bits="2048" /> + </KeyInfo> #. This will cause the generation of an 2048 bit RSA key when a client requests that Path. Alternatively you can specify ``dsa`` as the keytype, or a different @@ -81,9 +83,11 @@ number of bits. #. Similarly, create the matching directory structure for the certificate path, and a ``cert.xml`` containinng the following: - <CertInfo> - <Cert format="pem" key="/etc/pki/tls/private/localhost.key" ca="default" days="365" c="US" l="New York" st="New York" o="Your Company Name" /> - </CertInfo> + .. code-block:: xml + + <CertInfo> + <Cert format="pem" key="/etc/pki/tls/private/localhost.key" ca="default" days="365" c="US" l="New York" st="New York" o="Your Company Name" /> + </CertInfo> #. When a client requests the cert path, a certificate will be generated using the key hostfile at the specified key location, using the CA matching the ca |