Skip to content

Instantly share code, notes, and snippets.

@maruware
Created March 11, 2020 11:49
Show Gist options
  • Save maruware/fe629711ccdad653dd29135210073699 to your computer and use it in GitHub Desktop.
Save maruware/fe629711ccdad653dd29135210073699 to your computer and use it in GitHub Desktop.
systemd service example
[Unit]
Description=some-service
After=network.target
[Service]
WorkingDirectory=/your/directory
Environment=NODE_ENV=production
Environment=REDIS_HOST=localhost
ExecStart=/usr/bin/node index.js
Restart=always
Type=simple
User=maruware
Group=maruware
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment