mirror of
https://github.com/YunoHost-Apps/nodebb_ynh.git
synced 2024-09-03 19:46:29 +02:00
21 lines
409 B
SYSTEMD
21 lines
409 B
SYSTEMD
|
[Unit]
|
||
|
Description=NodeBB forum for Node.js.
|
||
|
Documentation=http://nodebb.readthedocs.io/en/latest/
|
||
|
After=system.slice multi-user.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=nodebb
|
||
|
|
||
|
StandardOutput=syslog
|
||
|
StandardError=syslog
|
||
|
SyslogIdentifier=nodebb
|
||
|
|
||
|
Environment=NODE_ENV=production
|
||
|
WorkingDirectory=__PATH__
|
||
|
ExecStart=/usr/bin/node loader.js --no-daemon --no-silent
|
||
|
Restart=always
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|