summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/fileserver/staticfiles.go
diff options
context:
space:
mode:
authordiamondburned <diamondburned@diamondb.xyz>2021-06-07 11:20:08 -0700
committerGitHub <noreply@github.com>2021-06-07 12:20:08 -0600
commitf9b54454a19e2b070159ce8d2af76d819658244e (patch)
tree888ab85d70377385e617328ec34001b9695106b7 /modules/caddyhttp/fileserver/staticfiles.go
parent658772ff24b9e1eabf6f254d039d91e8abfcb775 (diff)
fileserver: Redirect within the original URL (#4179)
This commit changes the file_server directive to redirect using the original request's URL instead of the possibly trimmed URL. This should make file_server work with handle_path. This fix is taken from mholt's comment in https://caddy.community/t/file-servers-on-different-paths-not-working/11698/11.
Diffstat (limited to 'modules/caddyhttp/fileserver/staticfiles.go')
-rw-r--r--modules/caddyhttp/fileserver/staticfiles.go14
1 files changed, 8 insertions, 6 deletions
diff --git a/modules/caddyhttp/fileserver/staticfiles.go b/modules/caddyhttp/fileserver/staticfiles.go
index f2320aa..87e0a77 100644
--- a/modules/caddyhttp/fileserver/staticfiles.go
+++ b/modules/caddyhttp/fileserver/staticfiles.go
@@ -243,12 +243,14 @@ func (fsrv *FileServer) ServeHTTP(w http.ResponseWriter, r *http.Request, next c
// trailing slash - not enforcing this can break relative hrefs
// in HTML (see https://github.com/caddyserver/caddy/issues/2741)
if fsrv.CanonicalURIs == nil || *fsrv.CanonicalURIs {
- if implicitIndexFile && !strings.HasSuffix(r.URL.Path, "/") {
- fsrv.logger.Debug("redirecting to canonical URI (adding trailing slash for directory)", zap.String("path", r.URL.Path))
- return redirect(w, r, r.URL.Path+"/")
- } else if !implicitIndexFile && strings.HasSuffix(r.URL.Path, "/") {
- fsrv.logger.Debug("redirecting to canonical URI (removing trailing slash for file)", zap.String("path", r.URL.Path))
- return redirect(w, r, r.URL.Path[:len(r.URL.Path)-1])
+ oldReq := r.Context().Value(caddyhttp.OriginalRequestCtxKey).(http.Request)
+
+ if implicitIndexFile && !strings.HasSuffix(oldReq.URL.Path, "/") {
+ fsrv.logger.Debug("redirecting to canonical URI (adding trailing slash for directory)", zap.String("path", oldReq.URL.Path))
+ return redirect(w, r, oldReq.URL.Path+"/")
+ } else if !implicitIndexFile && strings.HasSuffix(oldReq.URL.Path, "/") {
+ fsrv.logger.Debug("redirecting to canonical URI (removing trailing slash for file)", zap.String("path", oldReq.URL.Path))
+ return redirect(w, r, oldReq.URL.Path[:len(oldReq.URL.Path)-1])
}
}