Commit 529282d9de34830d3069cd35dfe7b417c566dedb

Authored by Valery Sizov
1 parent af0b65dd

unicorn: fix path to pid file

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
config/unicorn.rb.orig
... ... @@ -15,7 +15,7 @@ timeout 30
15 15 #listen "127.0.0.1:8080" # listen to port 8080 on the loopback interface
16 16 listen "/tmp/gitlab.socket"
17 17  
18   -pid "#{app_dir}/pids/unicorn.pid"
  18 +pid "#{app_dir}/tmp/pids/unicorn.pid"
19 19 stderr_path "#{app_dir}/log/unicorn.stderr.log"
20 20 stdout_path "#{app_dir}/log/unicorn.stdout.log"
21 21  
... ...