18 lines
436 B
Desktop File
18 lines
436 B
Desktop File
[Unit]
|
|
Description=The Apache HTTP Server
|
|
After=network.target remote-fs.target nss-lookup.target
|
|
Documentation=https://httpd.apache.org/docs/2.4/
|
|
|
|
[Service]
|
|
Type=forking
|
|
Environment=APACHE_STARTED_BY_SYSTEMD=true
|
|
ExecStart=/usr/sbin/apachectl start
|
|
ExecStop=/usr/sbin/apachectl graceful-stop
|
|
ExecReload=/usr/sbin/apachectl graceful
|
|
KillMode=mixed
|
|
PrivateTmp=true
|
|
Restart=always
|
|
OOMPolicy=continue
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|