summaryrefslogtreecommitdiff
path: root/_posts/2008-02-02-deploy-keys.markdown
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2011-06-14 19:13:41 -0700
committerAman Gupta <aman@tmm1.net>2011-06-14 19:13:41 -0700
commit2c6b8b63c0803c0d0a1157d017a439e6e16cb1c6 (patch)
tree15bc43775d3d185b0a18ebac00638d1b9d1c3bbd /_posts/2008-02-02-deploy-keys.markdown
parent351816c513a93bd3797841db7ea49ead207ce4a9 (diff)
parentca16d47e1027b9fb40c07a434660550dedfc353f (diff)
Merge pull request #34 from matschaffer/patch-1
Spelling correction.
Diffstat (limited to '_posts/2008-02-02-deploy-keys.markdown')
-rw-r--r--_posts/2008-02-02-deploy-keys.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2008-02-02-deploy-keys.markdown b/_posts/2008-02-02-deploy-keys.markdown
index c5f6812..a8d00ea 100644
--- a/_posts/2008-02-02-deploy-keys.markdown
+++ b/_posts/2008-02-02-deploy-keys.markdown
@@ -11,7 +11,7 @@ categories: intermediate
If your deploy process involves sshing into the server you are deploying to, you probably **do not** need to use deploy keys. Instead, you should use ssh-agent forwarding to temporarily allow the server to use your local ssh keys. Not only is this method easier to maintain, since you don't have any extra keys, but it's also more secure as the server never has keys saved to disk in case of a compromise. As always, you should use a [strong passphrase](/working-with-key-passphrases/) on your keys and let ssh-agent manage them for you.
-If your deploy process is remotly triggered and you do not log in to the deploying server via ssh, then you might need deploy keys. Read on to find out if you do.
+If your deploy process is remotely triggered and you do not log in to the deploying server via ssh, then you might need deploy keys. Read on to find out if you do.
##What are deploy keys?