15 lines
339 B
SYSTEMD
15 lines
339 B
SYSTEMD
[Unit]
|
|
Description=Lighttpd Daemon
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
PIDFile=/var/run/lighttpd.pid
|
|
ExecStartPre=/usr/sbin/lighttpd -tt -f /etc/lighttpd/lighttpd.conf
|
|
ExecStart=/usr/sbin/lighttpd -D -f /etc/lighttpd/lighttpd.conf
|
|
ExecReload=/bin/kill -USR1 $MAINPID
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|