Roundup Tracker - Issues

Message7118

Author rouilj
Recipients hansmaxe, rouilj, schlatterbeck
Date 2021-03-15.18:09:59
Message-id <20210315180958.75C9E6A01DA@pe15.cs.umb.edu>
In-reply-to <1615820188.06.0.346657868148.issue2551117@roundup.psfhosted.org>
In message <1615820188.06.0.346657868148.issue2551117@roundup.psfhosted.org>,
Hans Maxe writes:
>
>
>New submission from Hans Maxe:
>
>How do i start roundup with systemd?

This is the systemd config for issues.roundup-tracker.org. Roundup is
run using gunicorn.

=========
[Unit]
Description=Roundup Server - roundup

[Service]
User=roundup
WorkingDirectory=/path/to/roundup/trackers/roundup
SyslogIdentifier=roundup-server-roundup
ExecStart=/path/to/gunicorn -b unix:///var/run/roundup/roundup.sock wsgi -w 4 --preload --max-requests 128 --max-requests-jitter 32 --timeout 60 --graceful-timeout 60 --access-logfile - --error-logfile - 
ExecReload=/bin/kill -HUP $MAINPID
ExecStop = /bin/kill -s TERM $MAINPID
KillMode=mixed
Restart=on-failure
RestartSec=15s

[Install]
WantedBy=multi-user.target
================
History
Date User Action Args
2021-03-15 18:09:59rouiljsetrecipients: + rouilj, schlatterbeck, hansmaxe
2021-03-15 18:09:59rouiljlinkissue2551117 messages
2021-03-15 18:09:59rouiljcreate