Как использовать node-http-proxy для маршрутизации HTTP на HTTPS?
вот версия модуля, которую я использую:
$ npm list -g | grep proxy
├─┬ http-proxy@0.10.0
веб-сервис вызывает в мою машину, и моя задача-прокси-запрос на другой url-адрес и хост с дополнительным параметром запроса на основе содержимого тела запроса:
var http = require('http'),
httpProxy = require('http-proxy')
form2json = require('form2json');
httpProxy.createServer(function (req, res, proxy) {
// my custom logic
var fullBody = '';
req.on('data', function(chunk) {
// append the current chunk of data to the fullBody variable
fullBody += chunk.toString();
});
req.on('end', function() {
var jsonBody = form2json.decode(fullBody);
var payload = JSON.parse(jsonBody.payload);
req.url = '/my_couch_db/_design/ddoc_name/_update/my_handler?id="' + payload.id + '"';
// standard proxy stuff
proxy.proxyRequest(req, res, {
changeOrigin: true,
host: 'my.cloudant.com',
port: 443,
https: true
});
});
}).listen(8080);
но я продолжаю работать с ошибками, такими как:An error has occurred: {"code":"ECONNRESET"}
кто-нибудь есть идея о том, что нужно исправить здесь?
3 ответов
Это сделал трюк для меня:
var httpProxy = require('http-proxy');
var options = {
changeOrigin: true,
target: {
https: true
}
}
httpProxy.createServer(443, 'www.google.com', options).listen(8001);
пересылать все запросы, которые поступают на порт 3000
to https://google.com
:
const https = require('https')
const httpProxy = require('http-proxy')
httpProxy.createProxyServer({
target: 'https://google.com',
agent: https.globalAgent,
headers: {
host: 'google.com'
}
}).listen(3000)
пример вдохновлен https://github.com/nodejitsu/node-http-proxy/blob/master/examples/http/proxy-http-to-https.js - ...
после некоторых проб и ошибок это сработало для меня:
var fs = require('fs')
var httpProxy = require('http-proxy');
var https = require('https');
var KEY = 'newfile.key.pem';
var CERT = 'newfile.crt.pem';
httpProxy.createServer({
changeOrigin: true,
target: 'https://example.com',
agent: new https.Agent({
port: 443,
key: fs.readFileSync(KEY),
cert: fs.readFileSync(CERT)
})
}).listen(8080);