Skip to content

Commit

Permalink
Merge pull request docker#2453 from RangerMauve/patch-3
Browse files Browse the repository at this point in the history
Fix name of private key in configure-tls guide
  • Loading branch information
sfsmithcha authored Aug 18, 2016
2 parents 93fec76 + c5d5e73 commit 25919db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/configure-tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@ to create key pairs is identical for all servers. You'll create the following k
<td>A certificate signing request (CSR). A CSR is effectively an application to the CA to create a new key pair for a particular node. The CA takes the information provided in the CSR and generates the public and private key pair for that node.</td>
</tr>
<tr>
<td><code><i>node</i>-priv.key</code></td>
<td><code><i>node</i>-priv-key.pem</code></td>
<td>A private key signed by the CA. The node uses this key to authenticate itself with remote Docker Engines. Together with the <code><i>node</i>-cert.pem</code> file, this makes up a node's key pair.</td>
</tr>
<tr>
<td><code><i>node</i>-cert.pem</code></td>
<td>A certificate signed by the CA. This is not used in this example. Together with the <code><i>node</i>-priv.key</code> file, this makes up a node's key pair</td>
<td>A certificate signed by the CA. This is not used in this example. Together with the <code><i>node</i>-priv-key.pem</code> file, this makes up a node's key pair</td>
</tr>
</table>

Expand Down

0 comments on commit 25919db

Please sign in to comment.