Created
June 29, 2025 15:02
-
-
Save todashuta/21bd8ff739dd7390271b5b19c5e33e50 to your computer and use it in GitHub Desktop.
/etc/systemd/system/redmine-unicorn.service
This file contains hidden or 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
[Unit] | |
Description=Redmine Unicorn Server | |
After=network.target | |
[Service] | |
Type=simple | |
User=foo | |
WorkingDirectory=/home/foo/redmine | |
ExecStart=/usr/bin/bundle exec unicorn_rails --listen=127.0.0.1:3000 --env=production --path=/redmine | |
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