This is a module that is distributed with tengine which is a distribution of Nginx that is used by the e-commerce/auction site Taobao.com. This distribution contains some modules that are new on the Nginx scene. The ngx_http_footer_filter module is one of them.

Source: upstream source

Directives

Example

location / {
    footer        "<hr><p>Served by nginx — $hostname</p>";
    footer_types  text/html;
}

↑ back to index