Commit 35e0d7feaf682a9c7f71c97cb77af515ecbb4d22

Authored by Dmitriy Zaporozhets
2 parents 8b883dc4 29a522cb

Merge pull request #4082 from bbodenmiller/patch-10

no need to download init and nginx files since they are in repo now
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
doc/install/installation.md
@@ -220,7 +220,7 @@ Make sure to update username/password in config/database.yml. @@ -220,7 +220,7 @@ Make sure to update username/password in config/database.yml.
220 220
221 Download the init script (will be /etc/init.d/gitlab): 221 Download the init script (will be /etc/init.d/gitlab):
222 222
223 - sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-2-stable/lib/support/init.d/gitlab 223 + sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
224 sudo chmod +x /etc/init.d/gitlab 224 sudo chmod +x /etc/init.d/gitlab
225 225
226 Make GitLab start on boot: 226 Make GitLab start on boot:
@@ -261,7 +261,7 @@ If you can't or don't want to use Nginx as your web server, have a look at the @@ -261,7 +261,7 @@ If you can't or don't want to use Nginx as your web server, have a look at the
261 261
262 Download an example site config: 262 Download an example site config:
263 263
264 - sudo curl --output /etc/nginx/sites-available/gitlab https://raw.github.com/gitlabhq/gitlabhq/5-2-stable/lib/support/nginx/gitlab 264 + sudo cp lib/support/nginx/gitlab /etc/nginx/sites-available/gitlab
265 sudo ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab 265 sudo ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab
266 266
267 Make sure to edit the config file to match your setup: 267 Make sure to edit the config file to match your setup: