FAQ

Page Discussion Edit History

HttpIndexModule

(Redirected from NginxHttpIndexModule)

Contents

[edit] Synopsis

Sets the default file to serve if a directory is requested by the client.

[edit] Directives

[edit] index

syntax: index filename [filename... [fallback]]

default: index index.html

context: http, server, location

variables: no


Sets the default file to serve if a directory is requested by the client. Multiple files can be specified. If the first file isn't found, the second will be used and so on. If the last entry begins with a /, and none of the earlier files are found, nginx will perform an internal redirect to this uri.

  index index.html index.php /index.php;

[edit] References

Original Documentation