Documentation ¶
Index ¶
- Constants
- func Register(register eosc.IExtenderDriverRegister)
- type Config
- type Driver
- type Factory
- type ProxyRewrite
- func (p *ProxyRewrite) CheckSkill(skill string) bool
- func (p *ProxyRewrite) Destroy()
- func (p *ProxyRewrite) DoFilter(ctx http_service.IHttpContext, next http_service.IChain) error
- func (p *ProxyRewrite) Id() string
- func (p *ProxyRewrite) Reset(v interface{}, workers map[eosc.RequireId]interface{}) error
- func (p *ProxyRewrite) Start() error
- func (p *ProxyRewrite) Stop() error
- type SPrefixPath
- type SRegexPath
Constants ¶
View Source
const (
Name = "proxy_rewrite_v2"
)
Variables ¶
This section is empty.
Functions ¶
func Register ¶
func Register(register eosc.IExtenderDriverRegister)
Types ¶
type Config ¶
type Config struct { PathType string `json:"path_type" label:"path重写类型" enum:"none,static,prefix,regex"` StaticPath string `json:"static_path" label:"静态path" switch:"path_type==='static'"` PrefixPath []*SPrefixPath `json:"prefix_path" label:"path前缀替换" switch:"path_type==='prefix'"` RegexPath []*SRegexPath `json:"regex_path" label:"path正则替换" switch:"path_type==='regex'"` NotMatchErr bool `json:"not_match_err" label:"path替换失败不进行转发"` HostRewrite bool `json:"host_rewrite" label:"是否重写host"` Host string `json:"host" label:"Host" switch:"host_rewrite===true"` Headers map[string]string `json:"headers" label:"请求头部"` }
type Driver ¶
type Driver struct {
// contains filtered or unexported fields
}
func (*Driver) ConfigType ¶
type Factory ¶
type Factory struct { }
func NewFactory ¶
func NewFactory() *Factory
type ProxyRewrite ¶
type ProxyRewrite struct { *Driver // contains filtered or unexported fields }
func (*ProxyRewrite) CheckSkill ¶
func (p *ProxyRewrite) CheckSkill(skill string) bool
func (*ProxyRewrite) Destroy ¶
func (p *ProxyRewrite) Destroy()
func (*ProxyRewrite) DoFilter ¶
func (p *ProxyRewrite) DoFilter(ctx http_service.IHttpContext, next http_service.IChain) error
func (*ProxyRewrite) Id ¶
func (p *ProxyRewrite) Id() string
func (*ProxyRewrite) Reset ¶
func (p *ProxyRewrite) Reset(v interface{}, workers map[eosc.RequireId]interface{}) error
func (*ProxyRewrite) Start ¶
func (p *ProxyRewrite) Start() error
func (*ProxyRewrite) Stop ¶
func (p *ProxyRewrite) Stop() error
type SPrefixPath ¶
type SRegexPath ¶
Click to show internal directories.
Click to hide internal directories.