WebRouter
WebRouter copied to clipboard
WebRouter,根据域名或访问IP路由转发Web
Results
1
WebRouter issues
Sort by
recently updated
recently updated
newest added
package main import ( "bytes" "encoding/json" "fmt" "io" "io/ioutil" "log" "net" "os" "regexp" "strings" ) type rule struct { Domain string `json:Domain` Address string `json:Address` } type config struct {...