summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-13 08:59:23 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-13 08:59:23 -0700
commit419d1eac1fa3731810b551ef89f2c3d4c9cdbd92 (patch)
treea661921f41ef95a6886f1c4bba33ab832018ca9c
parent9ea27db155b1aac503c3a1cfabca422475378064 (diff)
parentaba29ab94ceb2957e4a284f882f92e4fa2f82650 (diff)
downloadgitlab-ce-419d1eac1fa3731810b551ef89f2c3d4c9cdbd92.tar.gz
Merge pull request #3903 from frlan/master
A small update of nginx example config to prevent users from issues while nginx not listen on localhost
-rw-r--r--lib/support/nginx/gitlab2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/support/nginx/gitlab b/lib/support/nginx/gitlab
index 7428393e664..b2500659bcd 100644
--- a/lib/support/nginx/gitlab
+++ b/lib/support/nginx/gitlab
@@ -7,7 +7,7 @@ upstream gitlab {
}
server {
- listen YOUR_SERVER_IP:80 default_server; # e.g., listen 192.168.1.1:80;
+ listen YOUR_SERVER_IP:80 default_server; # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
server_name YOUR_SERVER_FQDN; # e.g., server_name source.example.com;
root /home/git/gitlab/public;