From: Joe Orton
Date: Tue, 14 Jan 2020 10:48:53 +0000 (+0000)
Subject: Remove IdleShutdown docs.
X-Git-Tag: 2.5.0-alpha2-ci-test-only~1705
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7aa523b2c763d034fd5744b46112c4ee2e0897b;p=thirdparty%2Fapache%2Fhttpd.git
Remove IdleShutdown docs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1872764 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_systemd.xml b/docs/manual/mod/mod_systemd.xml
index cf90cd13ff2..47210c28ece 100644
--- a/docs/manual/mod/mod_systemd.xml
+++ b/docs/manual/mod/mod_systemd.xml
@@ -30,41 +30,16 @@
This module provides support for systemd integration. It allows
- starting httpd as a service with systemd Type=notify
- (see systemd.service(5) manual page for more information). It also
- provides statistics in systemctl status output and adds
- various directives useful for systemd integration.
-
+ httpd to be used in a service with the systemd
+ Type=notify (see systemd.service(5)
+ for more information). The module is activated if loaded.
+
+ ExtendedStatus is
+ enabled by default if the module is loaded. If ExtendedStatus is not disabled in
+ the configuration, run-time load and request statistics are made
+ available in the systemctl status output.
-
-IdleShutdown
-Enable shutting down the httpd when it is idle for some time.
-IdleShutdown seconds
-IdleShutdown 0
-server config
-
-
- The IdleShutdown directive enables shutting
- down the httpd when it is idle for some time. The idleness is based on
- bytes served, so if there are no bytes sent for some time defined by this
- directive, httpd will shutdown. By default, IdleShutdown is set to 0
- meaning this feature is disabled.
-
-
- This feature is useful in a combination with systemd socket activation
- (see systemd.socket(5) manual page). When httpd is started by systemd on
- some request, using this directive you can stop the httpd automatically
- when all the requests are served.
-
-
- Implementation warning
- Because of implementation details, idleness is checked only every 10
- seconds. That means that if you specify IdleShutdown 14,
- httpd will stop itself after 20 seconds of idleness.
-
-
-
-
-