Apache HTTP Server Version 2.5

Available Languages: en
| Description: | Provides better support for systemd integration | 
|---|---|
| Status: | Extension | 
| Module Identifier: | systemd_module | 
| Source File: | mod_systemd.c | 
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.
    
| Description: | Enable shutting down the httpd when it is idle for some time. | 
|---|---|
| Syntax: | IdleShutdown seconds | 
| Default: | IdleShutdown 0 | 
| Context: | server config | 
| Status: | Extension | 
| Module: | mod_systemd | 
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.
    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.
    
Available Languages: en