We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For example, ~/.ssh/config should have an entry like:
~/.ssh/config
Host sftp.example.com User tvaughan # This is the username on the **remote host**. IdentityFile ~/.ssh/example.pem
and config.rb should have a deploy block like:
config.rb
activate :deploy do |deploy| deploy.method = :sftp deploy.host = "sftp.example.com" deploy.path = "/srv/www/site" end