Update doc/install/installation.md

Line 295: sudo /etc/init.d/gitlab restart
Results in: "Error, unicorn not running!"
This is because unicorn is not yet running for first boot. I suggest changing this to 'start'.

Line 305: sudo apt-get install nginx
Change command to: sudo apt-get -y install nginx
Allowing automated install to simplify and follow pattern of earlier installs.
4-1-stable
Zachary Kjellberg 2013-01-23 15:04:09 -05:00
parent ed17a01181
commit 4f1035988d
1 changed files with 2 additions and 2 deletions

View File

@ -292,7 +292,7 @@ However there are still a few steps left.
sudo service gitlab start
# or
sudo /etc/init.d/gitlab restart
sudo /etc/init.d/gitlab start
# 7. Nginx
@ -302,7 +302,7 @@ If you can't or don't want to use Nginx as your web server, have a look at the
"Advanced Setup Tips" section.
## Installation
sudo apt-get install nginx
sudo apt-get -y install nginx
## Site Configuration