nginx 反向代理至 http://127.0.0.1:3000 静态资源404 咋整 ?
location / { proxy_pass http://127.0.0.1:3000; proxy_redirect default ; }
3 回复
设置静态资源的路由了么? 类似这样的
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
root E:\svn\web;
access_log off;
expires 30d;
}
你需要傻瓜型反向代理工具 redbird.bin
也可以用文件扩展名区分,类似下面这样:
#正则匹配,不区分大小写
location ~* \.(js|css|gif|ico|bmp|png|jpg|jpeg|flv|swf|xap|woff)$ {
root /path/to/static;
}