1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/overleaf_ynh.git synced 2024-09-03 19:56:27 +02:00
overleaf_ynh/conf/overleaf-history-v1.service

20 lines
560 B
SYSTEMD
Raw Normal View History

2022-04-23 19:59:10 +02:00
[Unit]
2023-11-22 15:12:51 +01:00
Description=__APP__ history-v1
2022-04-23 19:59:10 +02:00
After=network.target
[Service]
Type=simple
User=__APP__
Group=__APP__
2023-11-19 16:41:50 +01:00
WorkingDirectory=__INSTALL_DIR__/
EnvironmentFile=__INSTALL_DIR__/variables.env
2024-02-17 18:10:50 +01:00
Environment="MONGO_CONNECTION_STRING=mongodb://127.0.0.1:27017/__DB_NAME__"
2024-02-08 03:13:54 +01:00
Environment="NODE_CONFIG_DIR=__INSTALL_DIR__/live/services/history-v1/config"
2023-11-22 15:12:51 +01:00
ExecStart=__YNH_NODE__ __INSTALL_DIR__/live/services/history-v1/app.js
StandardOutput=append:/var/log/__APP__/history-v1.log
2022-04-23 19:59:10 +02:00
StandardError=inherit
Restart=on-failure
RestartSec=5s
[Install]
2024-02-20 19:14:24 +01:00
WantedBy=multi-user.target