【发布时间】:2017-03-02 14:03:35
【问题描述】:
我正在构建一个 NodeJS/express 应用程序,我需要在其中将一些请求转发到我的 Heroku API。
我探索了许多不同的解决方案(包括this SO question),但似乎没有一个适合我。
代码:
const API_SERVER = 'https://my-api.herokuapp.com';
const path = require('path'),
fs = require('fs'),
express = require('express'),
router = express.Router(),
httpProxy = require('http-proxy'),
apiProxy = httpProxy.createProxyServer({
target: API_SERVER,
secure: true,
ssl: {
key: fs.readFileSync(path.join('ssl', 'key.pem'),'utf8'),
cert: fs.readFileSync(path.join('ssl', 'cert.pem'), 'utf8')
}
});
router.all('/api/*', (req, res) => {
apiProxy.web(req, res);
});
module.exports = router;
我的快递服务器运行正常,但是当我向localhost/api/some-route 发出请求时,我收到以下错误:
Error: Hostname/IP doesn't match certificate's altnames: "Host: localhost. is not in the cert's altnames: DNS:*.herokuapp.com, DNS:herokuapp.com"
at Object.checkServerIdentity (tls.js:199:17)
at TLSSocket.<anonymous> (_tls_wrap.js:1091:29)
at emitNone (events.js:86:13)
at TLSSocket.emit (events.js:185:7)
at TLSSocket._finishInit (_tls_wrap.js:603:8)
at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:433:38)
Details:
killed: false
code: 1
signal: null
cmd: node ./server/index.js
Stack:
Error: Command failed: node ./server/index.js
C:\Users\web-app\node_modules\http-proxy\lib\http-proxy\index.js:119
throw err;
^
Error: Hostname/IP doesn't match certificate's altnames: "Host: localhost. is not in the cert's altnames: DNS:*.herokuapp.com, DNS:herokuapp.com"
at Object.checkServerIdentity (tls.js:199:17)
at TLSSocket.<anonymous> (_tls_wrap.js:1091:29)
at emitNone (events.js:86:13)
at TLSSocket.emit (events.js:185:7)
at TLSSocket._finishInit (_tls_wrap.js:603:8)
at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:433:38)
at ChildProcess.exithandler (child_process.js:206:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:877:16)
at Socket.<anonymous> (internal/child_process.js:334:11)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at Pipe._handle.close [as _onclose] (net.js:498:12)
从我可以从该错误消息中收集到的信息来看,Heroku 似乎不喜欢我从本地主机代理的事实......但我不确定还有什么可以尝试的。
我尝试使用 SSL(如上面的示例,使用自签名 SSL 证书)和不使用 SSL 创建 httpProxy.createProxyServer(),但我得到了同样的错误。
【问题讨论】:
标签: node.js express heroku proxy