Skip to content

Instantly share code, notes, and snippets.

@joepie91
Last active February 4, 2024 22:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepie91/121cee021f18e243a648ca8627b567c3 to your computer and use it in GitHub Desktop.
Save joepie91/121cee021f18e243a648ca8627b567c3 to your computer and use it in GitHub Desktop.
systemd service file example for Node.js
[Unit]
After=network.target
Description=Hello World App
[Service]
Environment="NODE_ENV=production"
ExecStart=/usr/bin/node /home/foo/test/index.js
Restart=on-failure
User=foo
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment