Commit aba29ab94ceb2957e4a284f882f92e4fa2f82650
1 parent
6e1ee1fe
Exists in
master
and in
4 other branches
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
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/support/nginx/gitlab
... | ... | @@ -7,7 +7,7 @@ upstream gitlab { |
7 | 7 | } |
8 | 8 | |
9 | 9 | server { |
10 | - listen YOUR_SERVER_IP:80 default_server; # e.g., listen 192.168.1.1:80; | |
10 | + listen YOUR_SERVER_IP:80 default_server; # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea | |
11 | 11 | server_name YOUR_SERVER_FQDN; # e.g., server_name source.example.com; |
12 | 12 | root /home/git/gitlab/public; |
13 | 13 | ... | ... |