Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
517 B

# File Location /lib/systemd/system
#
# After file creation run: systemctl daemon-reload
# enable service on start up: systemctl enable jeff
# start the service: systemctl start jrtechs
[Unit]
Description=Node JS Blog for Jrtechs
Documentation=https://jrtechs.net
After=network.target
[Service]
Type=simple
User=jeff
WorkingDirectory=/var/www/jrtechs.net/public_html/blog/NodeJSBlog/
ExecStart=/bin/bash /var/www/jrtechs.net/public_html/blog/NodeJSBlog/run
Restart=on-failure
[Install]
WantedBy=multi-user.target