Windows下nginx作为静态资源服务器测试

1、修改nginx配置,添加以下配置

 

#url  http://localhost/image/file/22.jpg 对应文件 E:/file/image/file/22.jpg
		#url  http://localhost/image/33.jpg   对应文件  E:/file/image/33.jpg
		 location /image/ {
            root   E:/file/;
			autoindex on;
          
        }
#http://192.168.2.41/file/11.jpg   对应 /dit/uploads/file/11.jpg
location /file/ {

             root   /dit/uploads/;


        }

2、配置

autoindex off;

表示不能通过目录访问到文件列表,必须精确访问到文件地址。

autoindex on;的时候访问文件目录会显示该目录下的所有文件。

如下图:

Windows下nginx作为静态资源服务器测试_第1张图片

你可能感兴趣的:(Nginx)