Skip to content
Snippets Groups Projects

Fixed typo in gitlab.yml.example

Closed gitlab-qa-bot requested to merge github/fork/mlitwiniuk/patch-1 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
  • 4f103598
    Update doc/install/installation.md · 4f103598
    Zachary Kjellberg authored
    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.
@@ -292,7 +292,7 @@ However there are still a few steps left.
@@ -292,7 +292,7 @@ However there are still a few steps left.
sudo service gitlab start
sudo service gitlab start
# or
# or
sudo /etc/init.d/gitlab restart
sudo /etc/init.d/gitlab start
# 7. Nginx
# 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
@@ -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.
"Advanced Setup Tips" section.
## Installation
## Installation
sudo apt-get install nginx
sudo apt-get -y install nginx
## Site Configuration
## Site Configuration
Loading