Skip to content
Snippets Groups Projects
Commit b3e07ec3 authored by Michael Moll's avatar Michael Moll
Browse files

bind unicorn listener to 127.0.0.1

otherwise it will listen on 0.0.0.0
parent 79b76d2c
No related branches found
No related tags found
2 merge requests!5081fixed command to update init script,!4845bind unicorn listener to 127.0.0.1
Loading
Loading
@@ -26,7 +26,7 @@ working_directory "/home/git/gitlab" # available in 0.94.0+
# listen on both a Unix domain socket and a TCP port,
# we use a shorter backlog for quicker failover when busy
listen "/home/git/gitlab/tmp/sockets/gitlab.socket", :backlog => 64
listen 8080, :tcp_nopush => true
listen "127.0.0.1:8080", :tcp_nopush => true
 
# nuke workers after 30 seconds instead of 60 seconds (the default)
timeout 30
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