通过nginx访问本地图片

 listen       80;
        server_name  image.demo.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
	
	location /file {
		alias   C:/file;
		index  index.html index.htm;
		autoindex on;
	}

  

猜你喜欢

转载自www.cnblogs.com/james-roger/p/11792189.html