Skip to content

Instantly share code, notes, and snippets.

@todashuta
Created June 29, 2025 15:02
Show Gist options
  • Save todashuta/21bd8ff739dd7390271b5b19c5e33e50 to your computer and use it in GitHub Desktop.
Save todashuta/21bd8ff739dd7390271b5b19c5e33e50 to your computer and use it in GitHub Desktop.
/etc/systemd/system/redmine-unicorn.service
[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