Last active
August 1, 2017 08:47
-
-
Save ordoghl/5883883 to your computer and use it in GitHub Desktop.
Ubuntu upstart job for Puma w/ rbenv and application deployed to appuser home directory.
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
# /etc/init/puma.conf - Puma config | |
description "Puma App Service" | |
start on (local-filesystems and net-device-up IFACE=lo and runlevel [2345]) | |
stop on (runlevel [!2345]) | |
setuid appuser | |
setgid appuser | |
respawn | |
respawn limit 3 30 | |
env HOME=/home/appuser | |
env PATH=/home/appuser/.rbenv/shims:/home/appuser/.rbenv/bin:/usr/local/bin:/usr/bin:/bin | |
chdir /home/appuser/app/current | |
exec /home/appuser/.rbenv/shims/puma -C /home/appuser/app/current/config/puma.rb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks very much for this!