mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-24 16:51:29 +00:00
13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
//sample : assign 127.0.0.1 to www.taobao.com
|
|
|
|
module.exports = {
|
|
|
|
replaceRequestOption : function(req,option){
|
|
if(option.hostname == "www.taobao.com"){
|
|
option.hostname = "127.0.0.1";
|
|
}
|
|
|
|
return option;
|
|
}
|
|
|
|
}; |