1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/sugarizer/templates/sugarizer.service.j2

22 lines
481 B
Text
Raw Normal View History

2018-05-23 21:18:16 +00:00
[Unit]
2017-05-27 18:09:50 +00:00
Description=Node.js Sugarizer Server
Requires=mongodb.service
2018-07-09 08:38:28 +00:00
After=mongodb.service
# Requires mongodb service to run first
2017-05-27 18:09:50 +00:00
[Service]
2018-05-22 16:52:31 +00:00
WorkingDirectory=/opt/iiab/sugarizer-server/
ExecStart=/usr/bin/node /opt/iiab/sugarizer-server/sugarizer.js
2018-05-22 19:17:48 +00:00
Type=simple
2017-05-27 18:09:50 +00:00
Restart=always
2018-05-22 16:52:31 +00:00
RestartSec=10
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=sugarizer
2017-05-27 18:09:50 +00:00
#User=<alternate user>
#Group=<alternate group>
#Environment=NODE_ENV=production
2017-05-27 18:09:50 +00:00
[Install]
WantedBy=multi-user.target