diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-13 02:28:46 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-13 02:28:46 -0700 |
commit | edcdbd671b3a1f01f0e1052d5867e4a14c90278b (patch) | |
tree | fe35efa79a2f71f9584bc8a04ebecca38984e952 | |
parent | 37b357d1f339c043e608fbcbd8baee624f9c9745 (diff) | |
parent | bfe4af846d04f3b6f5554860e7a8843a3a84672c (diff) | |
download | gitlab-ce-edcdbd671b3a1f01f0e1052d5867e4a14c90278b.tar.gz |
Merge pull request #3863 from crazyscience/patch-4
Fixed a nginx configuration
-rw-r--r-- | doc/install/installation.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 98a460c695b..7fd0aad52be 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -262,9 +262,10 @@ Download an example site config: Make sure to edit the config file to match your setup: - # Change **YOUR_SERVER_IP** and **YOUR_SERVER_FQDN** - # to the IP address and fully-qualified domain name - # of your host serving GitLab + # **YOUR_SERVER_FQDN** to the fully-qualified + # domain name of your host serving GitLab. Also, replace + # the 'listen' line with the following: + # listen 80 default_server; # e.g., listen 192.168.1.1:80; sudo vim /etc/nginx/sites-available/gitlab ## Restart |