0

I am trying to setup capifony. I am using this ssh -i keyfile.pem username@servername.com to authenticate on server from console. How I can configure capifony for this?

waj0x
  • 51
  • 5
  • I have been found the answer for this question here - http://stackoverflow.com/questions/7057047/aws-capistrano-connection-error – waj0x Aug 15 '12 at 09:48

1 Answers1

0

You could use the following configuration:

ssh_options[:user] = "username"
ssh_options[:keys] = ["/path/to/your/keyfile.pem"]
William Durand
  • 5,439
  • 1
  • 26
  • 37