1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/sugarizer/templates/sugarizer.service.j2

20 lines
475 B
Text
Raw Normal View History

2017-05-27 18:09:50 +00:00
[unit]
Description=Node.js Sugarizer Server
2018-05-22 16:52:31 +00:00
Requires=After=mongodb.service # Requires the 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