Skip to content

Instantly share code, notes, and snippets.

@tomcbe
Forked from casperbrike/puma.service
Created June 28, 2019 17:06
Show Gist options
  • Save tomcbe/bd09eac1b142242ef66f32717fbf2e2b to your computer and use it in GitHub Desktop.
Save tomcbe/bd09eac1b142242ef66f32717fbf2e2b to your computer and use it in GitHub Desktop.
Puma service for systemd
# username
# appname
# gemset
[Unit]
Description=Puma HTTP Server
After=network.target
[Service]
Type=forking
WorkingDirectory=/home/{username}/apps/{appname}/current
PIDFile=/home/{username}/apps/{appname}/shared/tmp/pids/puma.pid
User={username}
Group={usergroup}
ExecStart=/home/{username}/.rvm/bin/rvm 2.3.3@{gemset} do bundle exec puma -C /home/{username}/apps/{appname}/shared/puma.rb --daemon
ExecStop=/home/{username}/.rvm/bin/rvm 2.3.3@{gemset} do bundle exec pumactl -S /home/{username}/apps/{appname}/shared/tmp/pids/puma.state stop
ExecReload=/home/{username}/.rvm/bin/rvm 2.3.3@{gemset} do bundle exec pumactl -S /home/{username}/apps/{appname}/shared/tmp/pids/puma.state restart
Restart=always
[Install]
WantedBy=multi-user.target
# systemctl status puma.service
# systemctl enable puma.service
# systemctl -l status puma.service
# systemctl daemon-reload
# systemd-analyze verify puma.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment