Вопрос

I need to deploy my node-XMLHttpRequest app to a server that uses a proxy to access the internet. In a terminal on that server, I can curl -d "" http://website/path and it works fine. I think curl recognizes the environment variable http_proxy in that case. The node app times out because it doesn't see the proxy. How can I get the node app to use the proxy?

For instance, could I use http.globalAgent to send the requests through the proxy?

Это было полезно?

Решение 2

This fork adds a config object that can specify a proxy to use.

https://github.com/jbeuckm/node-XMLHttpRequest

Другие советы

Did you provide the proxy options to the http connection?

The below should help.

var http = require("http");

var options = {
hostname: "<proxy-server-address>",
port: <proxy-server-port>,
path: "http://www.xyz.com",
headers: {
  Host: "www.xyz.com"
         }
};

var req = http.request(options, function(res){ ... });

req.end();
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top