You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
396 B
16 lines
396 B
5 years ago
|
[Unit]
|
||
|
Description=HAProxy Load Balancer
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Environment="CONFIG=/etc/haproxy/haproxy.cfg" "PIDFILE=/run/haproxy.pid"
|
||
|
ExecStartPre=/usr/sbin/haproxy -f $CONFIG -c -q
|
||
|
ExecStart=/usr/sbin/haproxy -Ws -f $CONFIG -p $PIDFILE
|
||
|
ExecReload=/usr/sbin/haproxy -f $CONFIG -c -q
|
||
|
ExecReload=/bin/kill -USR2 $MAINPID
|
||
|
KillMode=mixed
|
||
|
Type=notify
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|