Skip to content
Snippets Groups Projects
Commit aba29ab9 authored by Frank Lanitz's avatar Frank Lanitz
Browse files

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
parent 6e1ee1fe
No related branches found
No related tags found
1 merge request!3903A small update of nginx example config to prevent users from issues while nginx not listen on localhost
Loading
Loading
@@ -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;
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment