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

  1. # File Location /lib/systemd/system
  2. #
  3. # After file creation run: systemctl daemon-reload
  4. # enable service on start up: systemctl enable jeff
  5. # start the service: systemctl start jrtechs
  6. [Unit]
  7. Description=Node JS Blog for Jrtechs
  8. Documentation=https://jrtechs.net
  9. After=network.target
  10. [Service]
  11. Type=simple
  12. User=jeff
  13. WorkingDirectory=/var/www/jrtechs.net/public_html/blog/NodeJSBlog/
  14. ExecStart=/bin/bash /var/www/jrtechs.net/public_html/blog/NodeJSBlog/run
  15. Restart=on-failure
  16. [Install]
  17. WantedBy=multi-user.target