编译选项
–with-http_random_index_module //
目录中选择一个随机主页
random_index_module //限制在location配置里
准备随机主页
[root@Nginx ~]# cd /opt/app/code/
[root@Nginx code]# ll
total 12
-rw-r--r-- 1 root root 6 Dec 8 03:51 1.html
-rw-r--r-- 1 root root 6 Dec 8 03:51 2.html
-rw-r--r-- 1 root root 6 Dec 8 03:51 3.html
修改配置
11 location / {
12 #root /usr/share/nginx/html;
13 root /opt/app/code; //随机页面目录
14 random_index on; //开启功能
15 #index index.html index.htm;
16 }
17