forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7df4e4a
commit c954807
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# you can copy this file to /etc/init/discourse.conf and then start discourse with | ||
# initctl start discourse | ||
|
||
# It assumes Discourse is installed at /var/www/discourse | ||
# It assumes Discourse is running under the discourse user | ||
# It assumes an rvm based setup | ||
|
||
description "Unicorn upstart for discourse" | ||
|
||
stop on runlevel [06] | ||
|
||
setuid discourse | ||
setgid discourse | ||
|
||
respawn | ||
respawn limit 3 30 | ||
|
||
|
||
script | ||
|
||
exec /bin/bash <<'EOT' | ||
|
||
# set HOME to the setuid user's home, there doesn't seem to be a better, portable way | ||
export HOME="$(eval echo ~$(id -un))" | ||
export RAILS_ENV=production | ||
export RUBY_GC_MALLOC_LIMIT=90000000 | ||
|
||
cd /var/www/discourse | ||
|
||
source "$HOME/.rvm/scripts/rvm" | ||
|
||
exec bundle exec unicorn -c config/unicorn.conf.rb | ||
EOT | ||
|
||
end script | ||
|