14 lines
422 B
SYSTEMD
14 lines
422 B
SYSTEMD
|
[Unit]
|
||
|
Description=HAProxy For TCP And HTTP Based Applications
|
||
|
After=nsyslog.target etwork.target
|
||
|
|
||
|
[Service]
|
||
|
Type=forking
|
||
|
PIDFile=/run/haproxy.pid
|
||
|
ExecStartPre=/usr/sbin/haproxy -c -q -f /etc/haproxy/haproxy.cfg
|
||
|
ExecStart=/usr/sbin/haproxy -D -f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid
|
||
|
ExecReload=/usr/sbin/haproxy -D -f /etc/haproxy/haproxy.cfg -p /run/haproxy.pid -sf $MAINPID
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|