Skip to content

Commit 62ffdb4

Browse files
committed
Fix path to local http-proxy in examples.
1 parent 912cd3a commit 62ffdb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/http/ntlm-authentication.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var httpProxy = require('http-proxy');
1+
var httpProxy = require('../../lib/http-proxy');
22
var Agent = require('agentkeepalive');
33

44
var agent = new Agent({

examples/http/reverse-proxy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
var http = require('http'),
2525
net = require('net'),
26-
httpProxy = require('http-proxy'),
26+
httpProxy = require('../../lib/http-proxy');
2727
url = require('url'),
2828
util = require('util');
2929

0 commit comments

Comments
 (0)