diff --git a/package.json b/package.json index 651c069..c63fd37 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "anyproxy", - "version": "2.3.1", + "version": "2.3.3", "description": "a charles/fiddler like proxy written in NodeJs, which can handle HTTPS requests and CROS perfectly.", "main": "proxy.js", "bin": { diff --git a/rule_sample/rule_intercept_some_https_requests.js b/rule_sample/rule_intercept_some_https_requests.js index 5ee36fc..10468b4 100644 --- a/rule_sample/rule_intercept_some_https_requests.js +++ b/rule_sample/rule_intercept_some_https_requests.js @@ -15,6 +15,7 @@ module.exports = { //intercept https://github.com/ //otherwise, all the https traffic will not go through this proxy + // return true; if(req.headers.host == "github.com"){ return true; }else{