Skip to content

Instantly share code, notes, and snippets.

@tomcbe
Forked from r00takaspin/puma.service
Created June 28, 2019 17:05
Show Gist options
  • Save tomcbe/868c87d3354575468dce311ecc59c7b8 to your computer and use it in GitHub Desktop.
Save tomcbe/868c87d3354575468dce311ecc59c7b8 to your computer and use it in GitHub Desktop.
Run puma web server with RVM from systemd
[Unit]
Description=Puma HTTP Server
After=network.target
# Uncomment for socket activation (see below)
# Requires=puma.socket
[Service]
# Foreground process (do not use --daemon in ExecStart or config.rb)
Type=simple
# Preferably configure a non-privileged user
# User=
# The path to the puma application root
# Also replace the "<WD>" place holders below with this path.
# Helpful for debugging socket activation, etc.
# Environment=PUMA_DEBUG=1
# The command to start Puma. This variant uses a binstub generated via
# `bundle binstubs puma --path ./sbin` in the WorkingDirectory
# (replace "<WD>" below)
WorkingDirectory=/home/deploy/moika/current
User=deploy
Group=deploy
ExecStart=/home/deploy/.rvm/bin/rvm all do bundle exec puma -b tcp://0.0.0.0:3000 -e production
# Variant: Use config file with `bind` directives instead:
# ExecStart=<WD>/sbin/puma -C config.rb
# Variant: Use `bundle exec --keep-file-descriptors puma` instead of binstub
Restart=always
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment