1d6ce77ab3
- Also fix subtle non-obvious systemd unit confusion we really mean -DFOREGROUND not -DNO_DETACH the latter only inhibits the parent from forking, not quite the same as running in well.. the foreground as required. OBS-URL: https://build.opensuse.org/request/show/197315 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=391
17 lines
475 B
Desktop File
17 lines
475 B
Desktop File
[Unit]
|
|
Description=The Apache Webserver
|
|
Wants=network.target nss-lookup.target
|
|
After=network.target nss-lookup.target
|
|
Before=getty@tty1.service
|
|
|
|
[Service]
|
|
Type=notify
|
|
PrivateTmp=true
|
|
EnvironmentFile=/etc/sysconfig/apache2
|
|
ExecStart=/usr/sbin/start_apache2 -D SYSTEMD -DFOREGROUND -k start
|
|
ExecReload=/usr/sbin/start_apache2 -D SYSTEMD -DFOREGROUND -t -k graceful
|
|
ExecStop=/usr/sbin/start_apache2 -D SYSTEMD -DFOREGROUND -k graceful-stop
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|