mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-21 14:04:21 +00:00
36 lines
885 B
JavaScript
36 lines
885 B
JavaScript
var rules = {
|
|
"map" :[
|
|
{
|
|
"host" :/./,
|
|
"path" :/\/path\/test/,
|
|
"localFile" :"",
|
|
"localDir" :"~/"
|
|
}
|
|
,{
|
|
"host" :/./,
|
|
"path" :/png/,
|
|
"localFile" :"/Users/Stella/tmp/test.png",
|
|
"localDir" :"~/"
|
|
}
|
|
,{
|
|
"host" :/./,
|
|
"path" :/jpg/,
|
|
"localFile" :"/Users/Stella/tmp/test.png",
|
|
"localDir" :"~/"
|
|
}
|
|
,{
|
|
"host" :/./,
|
|
"path" :/gif/,
|
|
"localFile" :"/Users/Stella/tmp/test.png",
|
|
"localDir" :"~/"
|
|
}
|
|
]
|
|
,"httpsConfig":{
|
|
// "bypassAll" : true,
|
|
// "interceptDomains":[/^.*alibaba-inc\.com$/]
|
|
"bypassAll" : false,
|
|
"interceptDomains":[]
|
|
}
|
|
}
|
|
|
|
module.exports = rules; |