ngx_http_random_index_module 模块

优质
小牛编辑
128浏览
2023-12-01

ngx_http_random_index_module模块在文件夹中随机选择一个文件作为默认页。 使用此模块前要先配置 ngx_http_index_module 模块。

nginx默认不编译这个模块, 需要开启 --with-http_random_index_module 编译选项。

配置示例

location / {
    random_index on;
}

指令

语法:random_index on | off;
默认值:
random_index off;
上下文:location

在所在location启动或禁用模块处理。

翻译: WenMing