通过nginx访问本地图片
时间:2019-11-04 15:26:13
收藏:0
阅读:895
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;
}

原文:https://www.cnblogs.com/james-roger/p/11792189.html
评论(0)