diff options
author | Lyle Entwistle <lyleentwistle@preloaded.com> | 2013-05-09 17:41:00 +0100 |
---|---|---|
committer | Lyle Entwistle <lyleentwistle@preloaded.com> | 2013-05-09 17:41:00 +0100 |
commit | 85e784cc1d3d44cdb553bc3be77a3522e6ae4603 (patch) | |
tree | f4f2d8df3cf0c899e239a1b3ba30cdde0d18969b /lib/support/init.d | |
parent | 6e1ee1fea6400c3621005f1b79e1b8dab43cd000 (diff) | |
download | gitlab-ce-85e784cc1d3d44cdb553bc3be77a3522e6ae4603.tar.gz |
Fixed puma.rb environment setting, no need to specify 'production' in daemon options now
Diffstat (limited to 'lib/support/init.d')
-rw-r--r-- | lib/support/init.d/gitlab | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/support/init.d/gitlab b/lib/support/init.d/gitlab index 9c922f85b6a..47996594e3b 100644 --- a/lib/support/init.d/gitlab +++ b/lib/support/init.d/gitlab @@ -17,7 +17,7 @@ APP_ROOT="/home/git/gitlab" APP_USER="git" -DAEMON_OPTS="-C $APP_ROOT/config/puma.rb -e production" +DAEMON_OPTS="-C $APP_ROOT/config/puma.rb" PID_PATH="$APP_ROOT/tmp/pids" WEB_SERVER_PID="$PID_PATH/puma.pid" SIDEKIQ_PID="$PID_PATH/sidekiq.pid" |