无法在node.js

时间:2015-10-05 15:38:47

标签: node.js express proxy reverse-proxy

我在端口5550上有node.js 4.1.1和express.js 4.8.5。我在端口8080上也有Geoserver 2.8.0。两台服务器都在同一台笔记本电脑上。

节点上的应用想要从Geoserver访问一些地图数据,这些是有关openlayers的详细信息

 source: new ol.source.TileWMS({
      url: 'http://localhost:8080/geoserver/mymap/wms?',
      crossOrigin: 'anonymous',
// I also tried  crossOrigin: 'localhost:8080/' and crossOrigin: 'localhost:5550/' but nothing

       params: {'LAYERS': 'mymap:layer, mymap:anotherLayer, FORMAT': 'image/png' ,'CRS': 'EPSG:3857'},
       serverType: 'geoserver'

在Geoserver上设置CORS或代理是不可能导致技术问题的原因(旧的Jetty核心,hack-ish解决方案对于旧的Jetty版本来说是不可用的jars)。为了避免CORS和Access Control Allow Origins错误,我想在Node上设置代理。我只想使用Node因为它更容易设置。

根据this和之前的问题here,我必须设置反向代理,所以

  • 我不在客户端进行代理配置
  • Geoserver通过Node反向代理获得服务,所以看起来就像他们一样 具有相同的起源(=没有更多的CORS问题)
  • 客户端想要访问Geoserver但是通过Node没有 知道了

我想我的概念是正确的,但我不知道如何实现这一点。我选择了http-proxy-middleware来做到这一点。我添加了app.js

var proxyMiddleware = require('http-proxy-middleware'); 

    var proxy = proxyMiddleware('http://localhost:8080/geoserver', {
                    target: 'http://localhost:5550',
                    changeOrigin: true   
                });

var app = express();

app.use('/' , function (req, res) {
       res.render('index', { title: 'testing', head: 'Welcome Testing Area'});
    });

app.use(proxy); 
app.listen(5550);

在控制台上,我看到[HPM] Proxy created: /geoserver -> http://localhost:5550

但我仍然收到错误Image from origin 'http://localhost:8080' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:5550' is therefore not allowed access. The response had HTTP status code 404.

我无法理解如何实现这一点。请指出我的错误或者我是否没有正确理解这个概念。请帮我理解。

由于

更新

这些是我打开浏览器控制台时看到的标题

General
Remote Address:[::1]:8080
Request URL:http://localhost:8080/geoserver/mymap/wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image%2Fpng&TRANSPARENT=true&LAYERS=mymap%3Aplanet_osm_polygon%2C%20mymap%3Aplanet_osm_line%2C%20mymap%3Aplanet_osm_roads%2C%20mymap%3Aplanet_osm_point&TILED=true&CRS=EPSG%3A3857&WIDTH=256&HEIGHT=256&STYLES=&BBOX=2269873.9919565953%2C4618019.500877209%2C2348145.508920616%2C4696291.017841229
Request Method:GET
Status Code:404 Not Found

Response Headers
HTTP/1.1 404 Not Found
Content-Type: text/html; charset=iso-8859-1
Content-Length: 1408
Server: Jetty(6.1.8)

Request Headers
Accept:image/webp,image/*,*/*;q=0.8
Accept-Encoding:gzip, deflate, sdch
Accept-Language:el-GR,el;q=0.8,en;q=0.6
Cache-Control:max-age=0
Connection:keep-alive
Host:localhost:8080
Origin:http://localhost:5550
Referer:http://localhost:5550/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36

2 个答案:

答案 0 :(得分:2)

您似乎错误配置了代理。

  • 混合使用普通代理配置和速记配置
  • 目标应该是Geoserver,而不是您的快速服务器。

Geoserver作为目标的正常语法:

var proxy = proxyMiddleware('/geoserver', {
                 target: 'http://localhost:8080',
                 changeOrigin: true   
            });

或者使用简写语法:

此配置的行为与前一个完全相同。

var proxy = proxyMiddleware('http://localhost:8080/geoserver', {
                 changeOrigin: true   
            });

答案 1 :(得分:0)

chimurai是对的。最终对我有用的是设置http-proxy-middleware

app.js我现在有

var proxyMiddleware = require('http-proxy-middleware'); 

var proxy = proxyMiddleware('http://localhost:5550', {
                 target: 'http://localhost:8080',
                 changeOrigin: true,
                 xfwd: true
            });

/*
the above can be replaced by chimurai's version : 
var proxy = proxyMiddleware('/geoserver', {
                 target: 'http://localhost:8080',
                 changeOrigin: true   
            });
and will still work
*/

var app = express();

// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');

app.use(favicon());
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded());
app.use(cookieParser());

app.use(express.static(path.join(__dirname, 'public')));

app.use('/', function(req, res, next) {
    httpProxy.createProxyServer({target:'http://localhost:8080'});
    next();
});

app.use(proxy);

app.listen(5550);

我在Openlayers代码中删除了这个crossOrigin: 'anonymous',,我修复了Openlayers中链接的拼写错误,现在工作正常。

我也尝试通过在Geoserver上设置代理来解决这个问题,但这是不可能的,因为Geoserver运行的是旧的Jetty版本,现在是EOL,因此没有正式的解决方案来代理Geoserver或升级它。

通过Node对此进行故障排除是最佳解决方案