Last active
December 11, 2023 10:32
-
-
Save casperbrike/182a659e640ea5afd908d4a5871ed83d to your computer and use it in GitHub Desktop.
Puma service for systemd
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
# 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