Skip to content

Commit 87ba3dd

Browse files
author
root
committed
Initial Release
0 parents commit 87ba3dd

File tree

9 files changed

+5675
-0
lines changed

9 files changed

+5675
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Makefile
2+
config.log
3+
config.status
4+
mod_status_text_config.h

COPYING

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Licensed to the Apache Software Foundation (ASF) under one or more
2+
contributor license agreements. See the NOTICE file distributed with
3+
this work for additional information regarding copyright ownership.
4+
The ASF licenses this file to You under the Apache License, Version 2.0
5+
(the "License"); you may not use this file except in compliance with
6+
the License. You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.

Makefile.in

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
MODULE_NAME=mod_status_text
2+
APXS=@APXS@
3+
4+
all: $(MODULE_NAME).la
5+
6+
$(MODULE_NAME).la: $(MODULE_NAME).c
7+
$(APXS) -c $(MODULE_NAME).c
8+
9+
install: $(MODULE_NAME).la
10+
$(APXS) -i -n $(MODULE_NAME) $(MODULE_NAME).la
11+
12+
clean:
13+
-rm -f $(MODULE_NAME).o $(MODULE_NAME).lo $(MODULE_NAME).la $(MODULE_NAME).slo
14+
-rm -rf autom4te.cache .libs
15+
16+
distclean: clean
17+
-rm -f config.log config.status Makefile mod_status_text_config.h

README

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
mod_status_text
2+
3+
What is it?
4+
5+
This is a full text fork of mod_status for only machine automatique parsing.
6+
7+
This is Status Module. They display lots of internal data about how Apache is
8+
performing and the state of all children processes.
9+
10+
How to use it ?
11+
12+
Load "mod_status" module and activate the "ExtendedStatus"
13+
14+
LoadModule status_module modules/mod_status.so
15+
ExtendedStatus On
16+
17+
them load mod_status_text and to enable it, add the following lines into any config file:
18+
19+
LoadModule status_text_module modules/mod_status_text.so
20+
<Location /server-status-text>
21+
SetHandler server-status-text
22+
</Location>
23+
24+
You may want to protect this location by password or domain so no one
25+
else can look at it. Then you can access the statistics with a URL like:
26+
27+
http://your_server_name/server-status-text
28+
29+
They returns full text server status
30+

0 commit comments

Comments
 (0)