mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-21 19:04:23 +00:00
22 lines
930 B
JavaScript
22 lines
930 B
JavaScript
var rules = {
|
|
"map" :[
|
|
{
|
|
"host" :/./, //regExp
|
|
"path" :/\/path\/test/, //regExp
|
|
"localFile" :"", //this file will be returned to user when host and path pattern both meets the request
|
|
"localDir" :"~/" //find the file of same name in localdir. anyproxy will not read localDir settings unless localFile is falsy
|
|
}
|
|
,{
|
|
"host" :/./,
|
|
"path" :/png/,
|
|
"localFile" :"/Users/Stella/tmp/test.png",
|
|
"localDir" :"~/"
|
|
}
|
|
]
|
|
,"httpsConfig":{
|
|
"bypassAll" : false, //by setting this to true, anyproxy will not intercept any https request
|
|
"interceptDomains":[/www\.a\.com/,/www\.b\.com/] //by setting bypassAll:false, requests towards these domains will be intercepted, and try to meet the map rules above
|
|
}
|
|
}
|
|
|
|
module.exports = rules; |