nginx

Module ngx_http_random_index_module


english
русский

简体中文
עברית
日本語
türkçe

news
about
download
security advisories
documentation
pgp keys
faq
links
books
support
donation

trac
wiki
twitter
nginx.com
Example Configuration
Directives
     random_index

The ngx_http_random_index_module module processes requests ending with the slash character (‘/’) and picks a random file in a directory as an index file. It works before the ngx_http_index_module module.

This module is not built by default, it should be enabled with the --with-http_random_index_module configuration parameter.

Example Configuration

location / {
    random_index on;
}

Directives

syntax: random_index on | off;
default:
random_index off;
context: location

Enables or disables module processing in a surrounding location.