=encoding utf-8 =head1 NAME ngx_http_index_module - Module ngx_http_index_module =head1 The C module processes requests ending with the slash character (‘C>’). Such requests can also be processed by the L and L modules. =head1 Example Configuration location / { index index.$geo.html index.html; } =head1 Directives =head2 index B index I> ...> B I B I B I B I Defines files that will be used as an index. The I> name can contain variables. Files are checked in the specified order. The last element of the list can be a file with an absolute path. Example: index index.$geo.html index.0.html /index.html; It should be noted that using an index file causes an internal redirect, and the request can be processed in a different location. For example, with the following configuration: location = / { index index.html; } location / { ... } a “C>” request will actually be processed in the second location as “Cindex.html>”.