Nginx extended_status module


-- Decription --
This module is a extended module for Nginx status.
*Note: this module is not distributed with the Nginx source.
       Installation instructions can be found below.*


-- How to build and install --
Before compile, please apply patch to Nginx core according to the part of "How to patch Nginx core"
./configure --add-module=[nginx_extended_status_module source dirctory]
make
make install


-- How to configure this module --

Directive:

extended_status
  syntax: extended_status on|off;
  default: off
  context: http, server, location

Example:
    location = /extended_status {
        extended_status on;
    }
    location = /tablesort.min.js {
        root html;
    }


-- How to patch Nginx core --
For Nginx 0.8.54 (or 0.8.55),
patch -p0 < extended_status-0.8.54.patch

For Nginx 1.0.11,
patch -p0 < extended_status-1.0.11.patch


-- License --
This module borrowed a lot of codes from stub_status module of Nginx. This part of code is copyrighted by Igor Sysoev.

This module is licensed under the BSD license.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


-- Authors --
Youngseok Choi(zealot33@gmail.com)
李金虎(beagem@163.com)      
* The original author of this module is Heumgeun Kang(heumgeun.kang@nhn.com).