Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
9ea05919
Commit
9ea05919
authored
Jul 14, 2016
by
Pedro Nasser
Committed by
GitHub
Jul 14, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #931 from pedronasser/master
fix transparent host header #916
parents
2125ae5f
ffafb2ec
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
3 deletions
+24
-3
caddyhttp/proxy/proxy.go
caddyhttp/proxy/proxy.go
+6
-0
caddyhttp/proxy/proxy_test.go
caddyhttp/proxy/proxy_test.go
+8
-0
caddyhttp/proxy/upstream.go
caddyhttp/proxy/upstream.go
+8
-1
caddyhttp/proxy/upstream_test.go
caddyhttp/proxy/upstream_test.go
+2
-2
No files found.
caddyhttp/proxy/proxy.go
View file @
9ea05919
...
...
@@ -30,6 +30,8 @@ type Upstream interface {
Select
()
*
UpstreamHost
// Checks if subpath is not an ignored path
AllowedPath
(
string
)
bool
// Is Upstream in transparent mode?
Transparent
()
bool
}
// UpstreamHostDownFunc can be used to customize how Down behaves.
...
...
@@ -94,6 +96,7 @@ func (p Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
start
:=
time
.
Now
()
for
time
.
Now
()
.
Sub
(
start
)
<
tryDuration
{
host
:=
upstream
.
Select
()
if
host
==
nil
{
return
http
.
StatusBadGateway
,
errUnreachable
}
...
...
@@ -125,6 +128,9 @@ func (p Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
if
v
,
ok
:=
host
.
UpstreamHeaders
[
"Host"
];
ok
{
outreq
.
Host
=
replacer
.
Replace
(
v
[
len
(
v
)
-
1
])
}
if
upstream
.
Transparent
()
{
host
.
UpstreamHeaders
.
Set
(
"Host"
,
host
.
Name
)
}
// modify headers for request that will be sent to the upstream host
upHeaders
:=
createHeadersByRules
(
host
.
UpstreamHeaders
,
r
.
Header
,
replacer
)
for
k
,
v
:=
range
upHeaders
{
...
...
caddyhttp/proxy/proxy_test.go
View file @
9ea05919
...
...
@@ -687,6 +687,10 @@ func (u *fakeUpstream) AllowedPath(requestPath string) bool {
return
true
}
func
(
u
*
fakeUpstream
)
Transparent
()
bool
{
return
true
}
// newWebSocketTestProxy returns a test proxy that will
// redirect to the specified backendAddr. The function
// also sets up the rules/environment for testing WebSocket
...
...
@@ -729,6 +733,10 @@ func (u *fakeWsUpstream) AllowedPath(requestPath string) bool {
return
true
}
func
(
u
*
fakeWsUpstream
)
Transparent
()
bool
{
return
true
}
// recorderHijacker is a ResponseRecorder that can
// be hijacked.
type
recorderHijacker
struct
{
...
...
caddyhttp/proxy/upstream.go
View file @
9ea05919
...
...
@@ -26,6 +26,7 @@ type staticUpstream struct {
Hosts
HostPool
Policy
Policy
insecureSkipVerify
bool
transparent
bool
FailTimeout
time
.
Duration
MaxFails
int32
...
...
@@ -54,6 +55,7 @@ func NewStaticUpstreams(c caddyfile.Dispenser) ([]Upstream, error) {
FailTimeout
:
10
*
time
.
Second
,
MaxFails
:
1
,
MaxConns
:
0
,
transparent
:
false
,
}
if
!
c
.
Args
(
&
upstream
.
from
)
{
...
...
@@ -287,7 +289,7 @@ func parseBlock(c *caddyfile.Dispenser, u *staticUpstream) error {
}
u
.
downstreamHeaders
.
Add
(
header
,
value
)
case
"transparent"
:
u
.
upstreamHeaders
.
Add
(
"Host"
,
"{host}"
)
u
.
transparent
=
true
u
.
upstreamHeaders
.
Add
(
"X-Real-IP"
,
"{remote}"
)
u
.
upstreamHeaders
.
Add
(
"X-Forwarded-For"
,
"{remote}"
)
u
.
upstreamHeaders
.
Add
(
"X-Forwarded-Proto"
,
"{scheme}"
)
...
...
@@ -366,6 +368,11 @@ func (u *staticUpstream) Select() *UpstreamHost {
return
u
.
Policy
.
Select
(
pool
)
}
// Transparent returns true if upstream in transparent mode
func
(
u
*
staticUpstream
)
Transparent
()
bool
{
return
u
.
transparent
}
func
(
u
*
staticUpstream
)
AllowedPath
(
requestPath
string
)
bool
{
for
_
,
ignoredSubPath
:=
range
u
.
IgnoredSubPaths
{
if
httpserver
.
Path
(
path
.
Clean
(
requestPath
))
.
Matches
(
path
.
Join
(
u
.
From
(),
ignoredSubPath
))
{
...
...
caddyhttp/proxy/upstream_test.go
View file @
9ea05919
...
...
@@ -209,8 +209,8 @@ func TestParseBlock(t *testing.T) {
for
_
,
upstream
:=
range
upstreams
{
headers
:=
upstream
.
Select
()
.
UpstreamHeaders
if
_
,
ok
:=
headers
[
"Host"
];
!
ok
{
t
.
Errorf
(
"Test %d:
Could not find the Host header
"
,
i
+
1
)
if
!
upstream
.
Transparent
()
{
t
.
Errorf
(
"Test %d:
Upstream should be in transparent mode
"
,
i
+
1
)
}
if
_
,
ok
:=
headers
[
"X-Real-Ip"
];
!
ok
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment