123456789101112131415161718192021 |
- package v1
- type Proxy struct {
- ReverseProxyId int64
- RequestHostType int32
- RequestHost string
- RequestHostExcludingPort bool
- RequestURI string
- StripPrefix string
- AutoFlush bool
- AddHeaders []string
- ProxyProtocolJSON []byte
- FollowRedirects bool
- Retry50X bool
- Retry40X bool
- }
- type ProxyProtocolJSON struct {
- IsOn bool `json:"isOn"`
- Version int `json:"version"`
- }
|