mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-23 18:21:23 +08:00
websocket directive, upgrade comparison
This commit is contained in:
parent
2d6ff40649
commit
56ec7b9887
|
@ -16,7 +16,7 @@ import (
|
|||
"time"
|
||||
)
|
||||
|
||||
const HTTPSwitchProtocols = 101
|
||||
const HTTPSwitchingProtocols = 101
|
||||
|
||||
// onExitFlushLoop is a callback set by tests to detect the state of the
|
||||
// flushLoop() goroutine.
|
||||
|
@ -155,7 +155,7 @@ func (p *ReverseProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request, extr
|
|||
|
||||
copyHeader(rw.Header(), res.Header)
|
||||
|
||||
if res.StatusCode == HTTPSwitchProtocols {
|
||||
if res.StatusCode == HTTPSwitchingProtocols && outreq.Header.Get("Upgrade") == "websocket" {
|
||||
hj, ok := rw.(http.Hijacker)
|
||||
if !ok {
|
||||
return nil
|
||||
|
|
|
@ -12,7 +12,10 @@ import (
|
|||
"github.com/mholt/caddy/config/parse"
|
||||
)
|
||||
|
||||
var supportedPolicies map[string]func() Policy = make(map[string]func() Policy)
|
||||
var (
|
||||
supportedPolicies map[string]func() Policy = make(map[string]func() Policy)
|
||||
proxyHeaders http.Header
|
||||
)
|
||||
|
||||
type staticUpstream struct {
|
||||
from string
|
||||
|
@ -40,7 +43,7 @@ func NewStaticUpstreams(c parse.Dispenser) ([]Upstream, error) {
|
|||
FailTimeout: 10 * time.Second,
|
||||
MaxFails: 1,
|
||||
}
|
||||
var proxyHeaders http.Header
|
||||
|
||||
if !c.Args(&upstream.from) {
|
||||
return upstreams, c.ArgErr()
|
||||
}
|
||||
|
@ -97,10 +100,10 @@ func NewStaticUpstreams(c parse.Dispenser) ([]Upstream, error) {
|
|||
if !c.Args(&header, &value) {
|
||||
return upstreams, c.ArgErr()
|
||||
}
|
||||
if proxyHeaders == nil {
|
||||
proxyHeaders = make(map[string][]string)
|
||||
}
|
||||
proxyHeaders.Add(header, value)
|
||||
addProxyHeader(header, value)
|
||||
case "websocket":
|
||||
addProxyHeader("Connection", "{>Connection}")
|
||||
addProxyHeader("Upgrade", "{>Upgrade}")
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -150,6 +153,14 @@ func RegisterPolicy(name string, policy func() Policy) {
|
|||
supportedPolicies[name] = policy
|
||||
}
|
||||
|
||||
// AddProxyHeader adds a proxy header.
|
||||
func addProxyHeader(header, value string) {
|
||||
if proxyHeaders == nil {
|
||||
proxyHeaders = make(map[string][]string)
|
||||
}
|
||||
proxyHeaders.Add(header, value)
|
||||
}
|
||||
|
||||
func (u *staticUpstream) From() string {
|
||||
return u.from
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user