Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Lanitz <frank@frank.uvena.de>2013-05-10 19:45:02 +0400
committerFrank Lanitz <frank@frank.uvena.de>2013-05-10 19:45:02 +0400
commitaba29ab94ceb2957e4a284f882f92e4fa2f82650 (patch)
tree2a595e5fce6ef5324e622460f8b316db1bcdddf4 /lib/support/nginx
parent6e1ee1fea6400c3621005f1b79e1b8dab43cd000 (diff)
Adding a short hint to *:80 for default listen address on nginx example config
Based on posting https://github.com/gitlabhq/gitlabhq/issues/3384#issuecomment-15457287 I was able to solved an issue here. Pointing out *:80 might could prevent others for struggeling here
Diffstat (limited to 'lib/support/nginx')
-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;