Commit edcdbd671b3a1f01f0e1052d5867e4a14c90278b

Authored by Dmitriy Zaporozhets
2 parents 37b357d1 bfe4af84

Merge pull request #3863 from crazyscience/patch-4

Fixed a nginx configuration
Showing 1 changed file with 4 additions and 3 deletions   Show diff stats
doc/install/installation.md
... ... @@ -262,9 +262,10 @@ Download an example site config:
262 262  
263 263 Make sure to edit the config file to match your setup:
264 264  
265   - # Change **YOUR_SERVER_IP** and **YOUR_SERVER_FQDN**
266   - # to the IP address and fully-qualified domain name
267   - # of your host serving GitLab
  265 + # **YOUR_SERVER_FQDN** to the fully-qualified
  266 + # domain name of your host serving GitLab. Also, replace
  267 + # the 'listen' line with the following:
  268 + # listen 80 default_server; # e.g., listen 192.168.1.1:80;
268 269 sudo vim /etc/nginx/sites-available/gitlab
269 270  
270 271 ## Restart
... ...