Commit 529282d9de34830d3069cd35dfe7b417c566dedb
1 parent
af0b65dd
Exists in
master
and in
4 other branches
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,7 +15,7 @@ timeout 30 | ||
15 | #listen "127.0.0.1:8080" # listen to port 8080 on the loopback interface | 15 | #listen "127.0.0.1:8080" # listen to port 8080 on the loopback interface |
16 | listen "/tmp/gitlab.socket" | 16 | listen "/tmp/gitlab.socket" |
17 | 17 | ||
18 | -pid "#{app_dir}/pids/unicorn.pid" | 18 | +pid "#{app_dir}/tmp/pids/unicorn.pid" |
19 | stderr_path "#{app_dir}/log/unicorn.stderr.log" | 19 | stderr_path "#{app_dir}/log/unicorn.stderr.log" |
20 | stdout_path "#{app_dir}/log/unicorn.stdout.log" | 20 | stdout_path "#{app_dir}/log/unicorn.stdout.log" |
21 | 21 |