Commit bfe4af846d04f3b6f5554860e7a8843a3a84672c

Authored by crazyscience
1 parent 78ff99a7

Fixed a nginx configuration

For some reason, if the nginx configuration is bound to an IP, it breaks the install, causing all git clone/push/pull operations to die with a 'fatal: The remote end hung up unexpectedly' message. Changing this configuration seems to fix the problem. I reckon that this is just a temporary fix. I don't know the ins and outs of GitLab well enough to vouch for this change, but I do know that these instructions are broken, and that this update will fix them.
Showing 1 changed file with 4 additions and 3 deletions   Show diff stats
doc/install/installation.md
... ... @@ -253,9 +253,10 @@ Download an example site config:
253 253  
254 254 Make sure to edit the config file to match your setup:
255 255  
256   - # Change **YOUR_SERVER_IP** and **YOUR_SERVER_FQDN**
257   - # to the IP address and fully-qualified domain name
258   - # of your host serving GitLab
  256 + # **YOUR_SERVER_FQDN** to the fully-qualified
  257 + # domain name of your host serving GitLab. Also, replace
  258 + # the 'listen' line with the following:
  259 + # listen 80 default_server; # e.g., listen 192.168.1.1:80;
259 260 sudo vim /etc/nginx/sites-available/gitlab
260 261  
261 262 ## Restart
... ...