使用Nginx配置本地文件代理,查看本地资源或图片
server {
listen 8094;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location /img {
root D:/upload; #实际访问路径为:D:/upload/img
}
location /test {
alias D:/upload/img; #实际访问路径为:D:/upload/img
}
location /fast {
alias dist;
}
location / {
root html/test/peditor;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}