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.
23 lines
752 B
23 lines
752 B
6 years ago
|
[Unit]
|
||
|
Description=The Apache HTTP Server
|
||
|
After=network.target remote-fs.target nss-lookup.target
|
||
|
Documentation=man:httpd(8)
|
||
|
Documentation=man:apachectl(8)
|
||
|
|
||
|
[Service]
|
||
|
Type=notify
|
||
|
EnvironmentFile=/etc/sysconfig/httpd
|
||
|
ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND
|
||
|
ExecReload=/usr/sbin/httpd $OPTIONS -k graceful
|
||
|
ExecStop=/bin/kill -WINCH ${MAINPID}
|
||
|
# We want systemd to give httpd some time to finish gracefully, but still want
|
||
|
# it to kill httpd after TimeoutStopSec if something went wrong during the
|
||
|
# graceful stop. Normally, Systemd sends SIGTERM signal right after the
|
||
|
# ExecStop, which would kill httpd. We are sending useless SIGCONT here to give
|
||
|
# httpd time to finish.
|
||
|
KillSignal=SIGCONT
|
||
|
PrivateTmp=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|