ngx_http_random_index_module
模块在文件夹中随机选择一个文件作为默认页。 使用此模块前要先配置 ngx_http_index_module 模块。
nginx默认不编译这个模块, 需要开启 --with-http_random_index_module
编译选项。
location / { random_index on; }
语法: | random_index |
默认值: | random_index off; |
上下文: | location |
在所在location启动或禁用模块处理。
翻译: WenMing |