Commit 7ddff367ae585feb37bef65095a96f541fad0634

Authored by Jacob Vosmaer
1 parent c44981f0
Exists in master

Wrap lines in README.md

Showing 1 changed file with 8 additions and 6 deletions   Show diff stats
README.md
... ... @@ -335,9 +335,9 @@ Run `sudo gitlab-ctl reconfigure` for the change to take effect.
335 335  
336 336 #### Use non-bundled web-server
337 337  
338   -By default, omnibus-gitlab installs GitLab with bundled Nginx.
339   -To use another web server like Apache or an existing Nginx installation you will
340   -have to do the following steps:
  338 +By default, omnibus-gitlab installs GitLab with bundled Nginx. To use another
  339 +web server like Apache or an existing Nginx installation you will have to do
  340 +the following steps:
341 341  
342 342 Disable bundled Nginx by specifying in `/etc/gitlab/gitlab.rb`:
343 343  
... ... @@ -345,9 +345,11 @@ Disable bundled Nginx by specifying in `/etc/gitlab/gitlab.rb`:
345 345 nginx['enable'] = false
346 346 ```
347 347  
348   -omnibus-gitlab allows webserver access through user `gitlab-www` which resides in the group with the same name.
349   -To allow an external webserver access to GitLab, you will need to add the webserver user to `gitlab-www` group.
350   -Let's say that webserver user is `www-data`. Adding the user to `gitlab-www` group can be done with:
  348 +Omnibus-gitlab allows webserver access through user `gitlab-www` which resides
  349 +in the group with the same name. To allow an external webserver access to
  350 +GitLab, you will need to add the webserver user to `gitlab-www` group. Let's
  351 +say that webserver user is `www-data`. Adding the user to `gitlab-www` group
  352 +can be done with:
351 353  
352 354 ```
353 355 usermod -aG gitlab-www www-data
... ...