discourse/config/discourse.config.sample

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
771 B
Plaintext
Raw Normal View History

2013-07-19 01:23:55 -04:00
# this is a sample Discourse upstart script that can be used in Ubuntu
# To use ensure you create wrappers for both bundler and bluepill using:
#
# rvm wrapper $(rvm current) bootup bluepill
# rvm wrapper $(rvm current) bootup bundle
#
2014-03-03 11:19:17 -05:00
description "Discourse process"
2013-07-19 01:23:55 -04:00
setuid discourse
respawn
respawn limit 3 30
start on runlevel [2345]
stop on runlevel [06]
env RAILS_ROOT=/var/www/discourse
env RAILS_ENV=production
env NUM_WEBS=4
env HOME=/home/discourse
env USER=discourse
env GROUP=discourse
script
# runs in sh, move it to bash so we can source rvm
exec /bin/bash <<EOT
source /home/discourse/.rvm/scripts/rvm
cd /var/www/discourse
exec /home/discourse/.rvm/bin/bootup_bluepill --no-privileged load /var/www/discourse/config/discourse.pill
EOT
end script