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
f4b6f15e
Commit
f4b6f15e
authored
Jun 07, 2017
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
staticfiles: Build redirect based on rewritten URL (fixes #1706)
parent
95a62376
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
13 deletions
+20
-13
caddyhttp/httpserver/server.go
caddyhttp/httpserver/server.go
+2
-0
caddyhttp/staticfiles/fileserver.go
caddyhttp/staticfiles/fileserver.go
+15
-12
caddyhttp/staticfiles/fileserver_test.go
caddyhttp/staticfiles/fileserver_test.go
+3
-1
No files found.
caddyhttp/httpserver/server.go
View file @
f4b6f15e
...
...
@@ -352,6 +352,8 @@ func (s *Server) serveHTTP(w http.ResponseWriter, r *http.Request) (int, error)
// look up the virtualhost; if no match, serve error
vhost
,
pathPrefix
:=
s
.
vhosts
.
Match
(
hostname
+
r
.
URL
.
Path
)
c
:=
context
.
WithValue
(
r
.
Context
(),
caddy
.
CtxKey
(
"path_prefix"
),
pathPrefix
)
r
=
r
.
WithContext
(
c
)
if
vhost
==
nil
{
// check for ACME challenge even if vhost is nil;
...
...
caddyhttp/staticfiles/fileserver.go
View file @
f4b6f15e
...
...
@@ -7,7 +7,6 @@ package staticfiles
import
(
"math/rand"
"net/http"
"net/url"
"os"
"path"
"path/filepath"
...
...
@@ -82,37 +81,41 @@ func (fs FileServer) serveFile(w http.ResponseWriter, r *http.Request) (int, err
// redirect to canonical path (being careful to preserve other parts of URL and
// considering cases where a site is defined with a path prefix that gets stripped)
u
:=
r
.
Context
()
.
Value
(
caddy
.
CtxKey
(
"original_url"
))
.
(
url
.
URL
)
if
u
.
Path
==
""
{
u
.
Path
=
"/"
urlCopy
:=
*
r
.
URL
pathPrefix
,
_
:=
r
.
Context
()
.
Value
(
caddy
.
CtxKey
(
"path_prefix"
))
.
(
string
)
if
pathPrefix
!=
"/"
{
urlCopy
.
Path
=
pathPrefix
+
urlCopy
.
Path
}
if
urlCopy
.
Path
==
""
{
urlCopy
.
Path
=
"/"
}
if
d
.
IsDir
()
{
// ensure there is a trailing slash
if
u
.
Path
[
len
(
u
.
Path
)
-
1
]
!=
'/'
{
u
.
Path
+=
"/"
http
.
Redirect
(
w
,
r
,
u
.
String
(),
http
.
StatusMovedPermanently
)
if
u
rlCopy
.
Path
[
len
(
urlCopy
.
Path
)
-
1
]
!=
'/'
{
u
rlCopy
.
Path
+=
"/"
http
.
Redirect
(
w
,
r
,
u
rlCopy
.
String
(),
http
.
StatusMovedPermanently
)
return
http
.
StatusMovedPermanently
,
nil
}
}
else
{
// ensure no trailing slash
redir
:=
false
if
u
.
Path
[
len
(
u
.
Path
)
-
1
]
==
'/'
{
u
.
Path
=
u
.
Path
[
:
len
(
u
.
Path
)
-
1
]
if
u
rlCopy
.
Path
[
len
(
urlCopy
.
Path
)
-
1
]
==
'/'
{
u
rlCopy
.
Path
=
urlCopy
.
Path
[
:
len
(
urlCopy
.
Path
)
-
1
]
redir
=
true
}
// if an index file was explicitly requested, strip file name from the request
// ("/foo/index.html" -> "/foo/")
for
_
,
indexPage
:=
range
IndexPages
{
if
strings
.
HasSuffix
(
u
.
Path
,
indexPage
)
{
u
.
Path
=
u
.
Path
[
:
len
(
u
.
Path
)
-
len
(
indexPage
)]
if
strings
.
HasSuffix
(
u
rlCopy
.
Path
,
indexPage
)
{
u
rlCopy
.
Path
=
urlCopy
.
Path
[
:
len
(
urlCopy
.
Path
)
-
len
(
indexPage
)]
redir
=
true
break
}
}
if
redir
{
http
.
Redirect
(
w
,
r
,
u
.
String
(),
http
.
StatusMovedPermanently
)
http
.
Redirect
(
w
,
r
,
u
rlCopy
.
String
(),
http
.
StatusMovedPermanently
)
return
http
.
StatusMovedPermanently
,
nil
}
}
...
...
caddyhttp/staticfiles/fileserver_test.go
View file @
f4b6f15e
...
...
@@ -230,9 +230,11 @@ func TestServeHTTP(t *testing.T) {
continue
}
// set the original URL on the context
// set the original URL
and path prefix
on the context
ctx
:=
context
.
WithValue
(
request
.
Context
(),
caddy
.
CtxKey
(
"original_url"
),
*
request
.
URL
)
request
=
request
.
WithContext
(
ctx
)
ctx
=
context
.
WithValue
(
request
.
Context
(),
caddy
.
CtxKey
(
"path_prefix"
),
test
.
stripPathPrefix
)
request
=
request
.
WithContext
(
ctx
)
request
.
Header
.
Add
(
"Accept-Encoding"
,
test
.
acceptEncoding
)
...
...
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