11
11
:Revision: $Revision: 1.2 $
14
mod_status displays server-status and server-config
14
mod_status displays the server's status and configuration
17
17
:keywords: lighttpd, server status
24
The server status module generates the ...
24
The server status module generates the status overview of the webserver. The
30
- active connections and their state
32
By default the status page is disabled to hide internal information from
33
unauthorized users. ::
35
status.status-url = "/server-status"
37
If you want to open the status page just for users from the local network
38
cover it in a conditional. ::
40
$HTTP["remoteip"] == "10.0.0.0/8" {
41
status.status-url = "/server-status"
44
Or require authorization: ::
46
auth.require = ( "/server-status" =>
53
By default a nice looking HTML page is generated. If you append ?auto to the
54
status-url you can get a text version which is simpler to parse. ::
61
Total Accesses is the number of handled requests, kBytes the overall outgoing
62
traffic, Uptime the uptime in seconds and BusyServers the number of currently
65
The naming is kept compatible to Apache even if we have another concept and
66
don't start new servers for each connection.
74
relative URL which is used to retrieve the status-page
78
Example: status.status-url = "/server-status"
82
add JavaScript which allows client-side sorting for the connection overview
88
relative URL for the config page which displays the loaded modules
92
Example: status.status-url = "/server-config"
96
relative URL for a plain-text page containing the internal statistics
100
Example: status.status-url = "/server-stats"