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
Łukasz Nowak
caddy
Commits
344017dc
Commit
344017dc
authored
Apr 17, 2017
by
Tw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proxy: use untouched URL for concatenating
Signed-off-by:
Tw
<
tw19881113@gmail.com
>
parent
8d1da68b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
caddyhttp/proxy/proxy_test.go
caddyhttp/proxy/proxy_test.go
+14
-4
caddyhttp/proxy/reverseproxy.go
caddyhttp/proxy/reverseproxy.go
+8
-1
No files found.
caddyhttp/proxy/proxy_test.go
View file @
344017dc
...
...
@@ -26,6 +26,7 @@ import (
"github.com/mholt/caddy/caddyfile"
"github.com/mholt/caddy/caddyhttp/httpserver"
"github.com/mholt/caddy/caddyhttp/staticfiles"
"golang.org/x/net/websocket"
)
...
...
@@ -896,10 +897,11 @@ func basicAuthTestcase(t *testing.T, upstreamUser, clientUser *url.Userinfo) {
func
TestProxyDirectorURL
(
t
*
testing
.
T
)
{
for
i
,
c
:=
range
[]
struct
{
requestURL
string
targetURL
string
without
string
expectURL
string
originalPath
string
requestURL
string
targetURL
string
without
string
expectURL
string
}{
{
requestURL
:
`http://localhost:2020/test`
,
...
...
@@ -969,6 +971,12 @@ func TestProxyDirectorURL(t *testing.T) {
targetURL
:
`https://localhost:2021/%2C`
,
expectURL
:
`https://localhost:2021/%2C/%2C`
,
},
{
originalPath
:
`///test`
,
requestURL
:
`http://localhost:2020/%2F/test`
,
targetURL
:
`https://localhost:2021/`
,
expectURL
:
`https://localhost:2021/%2F/test`
,
},
}
{
targetURL
,
err
:=
url
.
Parse
(
c
.
targetURL
)
if
err
!=
nil
{
...
...
@@ -980,6 +988,8 @@ func TestProxyDirectorURL(t *testing.T) {
t
.
Errorf
(
"case %d failed to create request: %s"
,
i
,
err
)
continue
}
req
=
req
.
WithContext
(
context
.
WithValue
(
req
.
Context
(),
staticfiles
.
URLPathCtxKey
,
c
.
originalPath
))
NewSingleHostReverseProxy
(
targetURL
,
c
.
without
,
0
)
.
Director
(
req
)
if
expect
,
got
:=
c
.
expectURL
,
req
.
URL
.
String
();
expect
!=
got
{
...
...
caddyhttp/proxy/reverseproxy.go
View file @
344017dc
...
...
@@ -25,6 +25,7 @@ import (
"golang.org/x/net/http2"
"github.com/mholt/caddy/caddyhttp/httpserver"
"github.com/mholt/caddy/caddyhttp/staticfiles"
)
var
(
...
...
@@ -154,7 +155,13 @@ func NewSingleHostReverseProxy(target *url.URL, without string, keepalive int) *
prefer
(
target
.
RawPath
,
target
.
Path
),
prefer
(
req
.
URL
.
RawPath
,
req
.
URL
.
Path
))
}
req
.
URL
.
Path
=
singleJoiningSlash
(
target
.
Path
,
req
.
URL
.
Path
)
untouchedPath
,
_
:=
req
.
Context
()
.
Value
(
staticfiles
.
URLPathCtxKey
)
.
(
string
)
req
.
URL
.
Path
=
singleJoiningSlash
(
target
.
Path
,
prefer
(
untouchedPath
,
req
.
URL
.
Path
))
// req.URL.Path must be consistent with decoded form of req.URL.RawPath if any
if
req
.
URL
.
RawPath
!=
""
&&
req
.
URL
.
RawPath
!=
req
.
URL
.
EscapedPath
()
{
panic
(
"RawPath doesn't match Path"
)
}
// Trims the path of the socket from the URL path.
// This is done because req.URL passed to your proxied service
...
...
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