Skip to content

Commit

Permalink
Merge pull request axios#1070 from Starfox64/master
Browse files Browse the repository at this point in the history
Adding support for UNIX Sockets
  • Loading branch information
emilyemorehouse committed Feb 17, 2018
2 parents 40b8299 + 85a48b2 commit ccc7889
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md 100644 → 100755
Expand Up @@ -313,6 +313,10 @@ These are the available config options for making requests. Only the `url` is re
// If set to 0, no redirects will be followed.
maxRedirects: 5, // default

// `socketPath` defines a UNIX Socket to be used in node.js.
// e.g. '/var/run/docker.sock' to send requests to the docker daemon.
socketPath: null, // default

// `httpAgent` and `httpsAgent` define a custom agent to be used when performing http
// and https requests, respectively, in node.js. This allows options to be added like
// `keepAlive` that are not enabled by default.
Expand Down
9 changes: 7 additions & 2 deletions lib/adapters/http.js 100644 → 100755
Expand Up @@ -72,15 +72,20 @@ module.exports = function httpAdapter(config) {
var agent = isHttps ? config.httpsAgent : config.httpAgent;

var options = {
hostname: parsed.hostname,
port: parsed.port,
path: buildURL(parsed.path, config.params, config.paramsSerializer).replace(/^\?/, ''),
method: config.method,
headers: headers,
agent: agent,
auth: auth
};

if (config.socketPath) {
options.socketPath = config.socketPath;
} else {
options.hostname = parsed.hostname;
options.port = parsed.port;
}

var proxy = config.proxy;
if (!proxy && proxy !== false) {
var proxyEnv = protocol.slice(0, -1) + '_proxy';
Expand Down

0 comments on commit ccc7889

Please sign in to comment.