mirror of
https://github.com/YunoHost-Apps/overleaf_ynh.git
synced 2024-09-03 19:56:27 +02:00
19 lines
398 B
SYSTEMD
19 lines
398 B
SYSTEMD
|
[Unit]
|
||
|
Description=__APP__ filestore
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=__APP__
|
||
|
Group=__APP__
|
||
|
WorkingDirectory=__FINALPATH__/
|
||
|
EnvironmentFile=__FINALPATH__/variables.env
|
||
|
ExecStart=__YNH_NODE__ __FINALPATH__/live/services/filestore/app.js
|
||
|
StandardOutput=append:/var/log/__APP__/filestore.log
|
||
|
StandardError=inherit
|
||
|
Restart=on-failure
|
||
|
RestartSec=5s
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|