Created
June 3, 2015 22:38
-
-
Save velenux/6883dc221a7d2eae7dcb to your computer and use it in GitHub Desktop.
systemd service to start rails/puma
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
# based on https://gist.github.com/twtw/5494223 | |
# create systemd service file for rails/puma startup | |
# 0. [if required: rvm use ruby@default] | |
# 1. rvm wrapper default systemd rails | |
# 2. put this file in /etc/systemd/system/rails-puma.service | |
# 3. systemctl enable rails-puma | |
# 4. systemctl start rails-puma | |
[Unit] | |
Description=Rails-Puma Webserver | |
[Service] | |
Type=simple | |
User=app | |
WorkingDirectory=/home/app/your-app | |
ExecStart=/home/app/.rvm/bin/systemd_rails server -e production | |
TimeoutSec=15 | |
Restart=always | |
[Install] | |
WantedBy=multi-user.target |
you need to create wapper script with rvm
$ su user
$ cd /home/user/app_name
$ alias create [app_name] ruby-[version]@[gemset_name]
and then use this path in puma.service
config path like
$ sudo vim /etc/systemd/system/puma.service
...
User=user
...
ExecStart=/home/[user]/.rvm/wrappers/[app_name]/puma -C /home/[user]/[app_name]/config/puma.rb
(check if $ puma
can run without errors in foreground from app directory)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
official documentation: https://github.com/puma/puma/blob/master/docs/systemd.md