Skip to content
This repository was archived by the owner on Nov 14, 2022. It is now read-only.

Commit c954807

Browse files
committed
added upstart script for Discourse
1 parent 7df4e4a commit c954807

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

config/unicorn_upstart.conf

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# you can copy this file to /etc/init/discourse.conf and then start discourse with
2+
# initctl start discourse
3+
4+
# It assumes Discourse is installed at /var/www/discourse
5+
# It assumes Discourse is running under the discourse user
6+
# It assumes an rvm based setup
7+
8+
description "Unicorn upstart for discourse"
9+
10+
stop on runlevel [06]
11+
12+
setuid discourse
13+
setgid discourse
14+
15+
respawn
16+
respawn limit 3 30
17+
18+
19+
script
20+
21+
exec /bin/bash <<'EOT'
22+
23+
# set HOME to the setuid user's home, there doesn't seem to be a better, portable way
24+
export HOME="$(eval echo ~$(id -un))"
25+
export RAILS_ENV=production
26+
export RUBY_GC_MALLOC_LIMIT=90000000
27+
28+
cd /var/www/discourse
29+
30+
source "$HOME/.rvm/scripts/rvm"
31+
32+
exec bundle exec unicorn -c config/unicorn.conf.rb
33+
EOT
34+
35+
end script
36+

0 commit comments

Comments
 (0)