Matt Holt
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
1 deletions
-
modules/caddyhttp/reverseproxy/fastcgi/fastcgi.go
|
|
@ -164,7 +164,12 @@ func (t Transport) buildEnv(r *http.Request) (map[string]string, error) { |
|
|
|
ip = strings.Replace(ip, "[", "", 1) |
|
|
|
ip = strings.Replace(ip, "]", "", 1) |
|
|
|
|
|
|
|
root := repl.ReplaceAll(t.Root, ".") |
|
|
|
// make sure file root is absolute
|
|
|
|
root, err := filepath.Abs(repl.ReplaceAll(t.Root, ".")) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
|
|
|
|
fpath := r.URL.Path |
|
|
|
|
|
|
|
// Split path in preparation for env variables.
|
|
|
|