From d6c369cfdf05467862af8a274d99cdc35064eea7 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Tue, 13 Jan 2015 23:27:31 -0500 Subject: [PATCH] Change where the ssh config PORT is setup and add a note about using `vagrant ssh-config` to verify it. Closes #795 --- docs/installation.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 26fbd4522..5a74ca1fd 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -95,13 +95,6 @@ sudo BUILD_STACK=true make install 10.0.0.2 dokku.me ``` -- Setup SSH Config in `~/.ssh/config` - - ``` - Host dokku.me - Port 2222 - ``` - - Create VM ``` # Optional ENV arguments: @@ -113,6 +106,12 @@ sudo BUILD_STACK=true make install cd path/to/dokku vagrant up ``` +- Setup SSH Config in `~/.ssh/config`. The port listed here is usually correct, though you may want to verify that it is the same as the one listed in the output of `vagrant ssh-config` + + ``` + Host dokku.me + Port 2222 + ``` - Copy your SSH key via `cat ~/.ssh/id_rsa.pub | pbcopy` and paste it into the dokku-installer at http://dokku.me . Change the `Hostname` field on the Dokku Setup screen to your domain and then check the box that says `Use virtualhost naming`. Then click *Finish Setup* to install your key. You'll be directed to application deployment instructions from here.