1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tandoor_ynh.git synced 2024-09-03 20:35:56 +02:00
tandoor_ynh/conf/systemd.service
navanchauhan f5dd425bd8 initial
2022-08-06 17:20:30 -04:00

16 lines
No EOL
428 B
Desktop File

[Unit]
Description=gunicorn daemon for recipes
After=network.target
[Service]
Type=simple
Restart=always
RestartSec=3
User=recipes
Group=www-data
WorkingDirectory=__FINAL_PATH__
EnvironmentFile=__FINAL_PATH__/.env
ExecStart=__FINAL_PATH__/bin/gunicorn --error-logfile /tmp/gunicorn_err.log --log-level debug --capture-output --bind unix:__FINAL_PATH__/recipes.sock recipes.wsgi:application
[Install]
WantedBy=multi-user.target