Skip to content

Commit 231e6f9

Browse files
authored
Change webhook execution command to node (#1713)
As several comments at the bottom of the linked article on L518 state, the 'nodejs' command has been replaced by 'node'. Attempting to run with 'nodejs' will result in a failure to start the webhook with a 203/EXEC status. https://prnt.sc/lRodj9tqwS4L
1 parent cb7eb74 commit 231e6f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docusaurus/docs/dev-docs/deployment/digitalocean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ After=network.target
495495
Environment=PATH=your_path
496496
Type=simple
497497
User=your-name
498-
ExecStart=/usr/bin/nodejs /home/your-name/NodeWebHooks/webhook.js
498+
ExecStart=/usr/bin/node /home/your-name/NodeWebHooks/webhook.js
499499
Restart=on-failure
500500
501501
[Install]

0 commit comments

Comments
 (0)