diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example
index 1a34d22417f84ad4c459c353c86822b7c521b084..02118cbd9501ea2d8f59ca81c8799e379fc86a09 100644
--- a/config/gitlab.yml.example
+++ b/config/gitlab.yml.example
@@ -96,7 +96,7 @@ omniauth:
 # GitLab Satellites
 satellites:
   # Relative paths are relative to Rails.root (default: tmp/repo_satellites/)
-  path: /home/gitlab/gitlab-satellites/
+  path: /home/git/gitlab-satellites/
 
 ## Backup settings
 backup:
@@ -105,8 +105,6 @@ backup:
 
 ## Gitolite settings
 gitolite:
-  admin_uri: git@localhost:gitolite-admin
-
   # REPOS_PATH MUST NOT BE A SYMLINK!!!
   repos_path: /home/git/repositories/
   hooks_path: /home/git/.gitolite/hooks/
diff --git a/config/unicorn.rb.example b/config/unicorn.rb.example
index 4852cd65daaddad1b2a8021e994656651bda3a2b..29b7146c7dff736bcf1e16498b4d9815194999c0 100644
--- a/config/unicorn.rb.example
+++ b/config/unicorn.rb.example
@@ -2,7 +2,7 @@
 # note that config/gitlab.yml web path should also be changed
 # ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
 
-app_dir = "/home/gitlab/gitlab/"
+app_dir = "/home/git/gitlab/"
 worker_processes 2
 working_directory app_dir
 
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 7c0c5e6c9bba9ac03d024f82975f40a71a17b228..9e7d80f8cc97b589bf6aedcc3a143834ad0a6cb3 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -111,12 +111,6 @@ Create a `git` user for Gitlab:
     ./bin/install 
 
 
-## Add domains to list to the list of known hosts
-
-    sudo -u git -H ssh git@localhost
-    sudo -u git -H ssh git@YOUR_DOMAIN_NAME
-    sudo -u git -H ssh git@YOUR_GITOLITE_DOMAIN_NAME
-
 
 # 5. Database
 
@@ -137,10 +131,10 @@ See `doc/install/databases.md`
     cd /home/git/gitlab
    
     # Checkout to stable release
-    sudo -u git -H git checkout 4-1-stable
+    sudo -u git -H git checkout 5-0-stable
 
 **Note:**
-You can change `4-1-stable` to `master` if you want the *bleeding edge* version, but
+You can change `5-0-stable` to `master` if you want the *bleeding edge* version, but
 do so with caution!
 
 ## Configure it
@@ -155,8 +149,8 @@ do so with caution!
     sudo -u git -H vim config/gitlab.yml
 
     # Make sure GitLab can write to the log/ and tmp/ directories
-    sudo chown -R gitlab log/
-    sudo chown -R gitlab tmp/
+    sudo chown -R git log/
+    sudo chown -R git tmp/
     sudo chmod -R u+rwX  log/
     sudo chmod -R u+rwX  tmp/
 
@@ -191,19 +185,6 @@ Make sure to update username/password in config/database.yml.
     # Or for PostgreSQL
     sudo -u git -H bundle install --deployment --without development test mysql
 
-## Configure Git
-
-GitLab needs to be able to commit and push changes to Gitolite. In order to do
-that Git requires a username and email. (We recommend using the same address
-used for the `email.from` setting in `config/gitlab.yml`)
-
-    sudo -u git -H git config --global user.name "GitLab"
-    sudo -u git -H git config --global user.email "gitlab@localhost"
-
-## Setup GitLab Hooks
-
-    sudo cp ./lib/hooks/post-receive /home/git/.gitolite/hooks/common/post-receive
-    sudo chown git:git /home/git/.gitolite/hooks/common/post-receive
 
 ## Initialise Database and Activate Advanced Features