Skip to content

Commit 4b58b42

Browse files
committed
Merge pull request #282 from watsoncj/insecure-proxy
Disable http-proxy certificate check
2 parents b38755b + 0915767 commit 4b58b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var StreamCache = require("stream-cache");
88
var http = require("http");
99
var https = require("https");
1010
var httpProxy = require("http-proxy");
11-
var proxy = new httpProxy.createProxyServer();
11+
var proxy = new httpProxy.createProxyServer({secure: false});
1212
var serveIndex = require("serve-index");
1313
var historyApiFallback = require("connect-history-api-fallback");
1414

0 commit comments

Comments
 (0)