diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-07-08 19:28:59 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-07-08 19:28:59 +0300 |
commit | 967d42e0c8701c82d7d7494b1fd1d96cd4f2973f (patch) | |
tree | 64cabf4d9c292546f8e129ecafa0a81dcf721c30 /lib/support | |
parent | 87f4e1f153ef763bbdbd614f3c9e1f2ea4798830 (diff) | |
download | gitlab-ce-967d42e0c8701c82d7d7494b1fd1d96cd4f2973f.tar.gz |
Fix unicorn init and config
Diffstat (limited to 'lib/support')
-rw-r--r-- | lib/support/init.d/gitlab_unicorn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/support/init.d/gitlab_unicorn b/lib/support/init.d/gitlab_unicorn index 2b26a962a8a..219776c8684 100644 --- a/lib/support/init.d/gitlab_unicorn +++ b/lib/support/init.d/gitlab_unicorn @@ -17,7 +17,7 @@ APP_ROOT="/home/git/gitlab" APP_USER="git" -DAEMON_OPTS="-C $APP_ROOT/config/unicorn.rb -E production" +DAEMON_OPTS="-c $APP_ROOT/config/unicorn.rb -E production" PID_PATH="$APP_ROOT/tmp/pids" SOCKET_PATH="$APP_ROOT/tmp/sockets" WEB_SERVER_PID="$PID_PATH/unicorn.pid" |