CentOS 7 搭建 nginx 文件目录

任务:

  1. 实现文件目录的浏览功能

步骤:

  1. 利用安装好的nginx,修改相应的配置文件
  2.  进入nginx安装目录
cd /data/server/redis/config/
vim nginx.conf
 修改以下部分:
 location / {
            root /data/server/nginx/; #指定实际目录绝对路径;
            autoindex on;             #开启目录浏览功能;   
            autoindex_exact_size off; #关闭详细文件大小统计,让文件大小显示MB,GB单位,默认为b;
            autoindex_localtime on;   #开启以服务器本地时区显示文件修改日期!  
            #root   html;
            index  index.html index.htm index.php;
        }
    

    

   3.重新加载配置文件,重启redis服务

cd ../sbin/
./nginx -s reload
./nginx -s reopen

  4.在浏览器中访问nginx 服务即实现目录浏览功能 

报错提示:

        

 

你可能感兴趣的:(CentOS 7 搭建 nginx 文件目录)