]> Sergey Matveev's repositories - public-inbox.git/blob - examples/public-inbox-httpd@.service
3bb707263fbd4cfabd7be95252646e89d3e880b0
[public-inbox.git] / examples / public-inbox-httpd@.service
1 # ==> /etc/systemd/system/public-inbox-httpd@.service <==
2 # Since SIGUSR2 upgrades do not work under systemd, this service file
3 # allows starting two simultaneous services during upgrade time
4 # (e.g. public-inbox-httpd@1 public-inbox-httpd@2) with the intention
5 # that they take turns running in-between upgrades.  This should
6 # allow upgrading without downtime.
7
8 [Unit]
9 Description = public-inbox PSGI server %i
10 Wants = public-inbox-httpd.socket
11 After = public-inbox-httpd.socket
12
13 [Service]
14 Environment = PI_CONFIG=/home/pi/.public-inbox/config \
15 PATH=/usr/local/bin:/usr/bin:/bin \
16 PERL_INLINE_DIRECTORY=/tmp/.pub-inline
17
18 LimitNOFILE = 30000
19 ExecStartPre = /bin/mkdir -p -m 1777 /tmp/.pub-inline
20 ExecStart = /usr/local/bin/public-inbox-httpd
21 Sockets = public-inbox-httpd.socket
22 KillSignal = SIGQUIT
23 User = nobody
24 Group = nogroup
25 ExecReload = /bin/kill -HUP $MAINPID
26 TimeoutStopSec = 3600
27
28 [Install]
29 WantedBy = multi-user.target