Hi, I'm following the instructions to setup capifony. Now I'm in the step 4 to setup the production server. This is my configuration file:
# deploy.rb set :application, "MyFirm" set :deploy_to, "/var/www/myfirm.com" set :domain, "dev.myfirm.com" set :scm, :gitrepoit set :repository, "ssh://[email protected]:/home/myfirm/ myfirm.git" set :user, "ec2-user" set :domain, "ec2-46-137-123-97.eu-west-1.compute.amazonaws.com" ssh_options[:keys] = [File.join("foo.key")] role :web, domain role :app, domain role :db, domain, :primary => true set :use_sudo, false set :keep_releases, 3 But when I execute cap deploy:setup, though I've set the public key in the configuration file, it asks me for a password... Any idea? capifony 2.1.1 Javi -- * You received this message because you are subscribed to the Google Groups "Capistrano" group. * To post to this group, send email to [email protected] * To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/capistrano?hl=en
