projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5e28606
)
Fix redirect-loop for Hugo server
author
bep
<bjorn.erik.pedersen@gmail.com>
Sun, 19 Oct 2014 12:41:02 +0000
(14:41 +0200)
committer
spf13
<steve.francia@gmail.com>
Sun, 2 Nov 2014 02:49:26 +0000
(22:49 -0400)
An extra slash was added to the path if baseUrl had a sub-directory, causing infinite redirect loop in Go's HTTP server.
Fixes #510
commands/server.go
patch
|
blob
|
history
diff --git
a/commands/server.go
b/commands/server.go
index 921b9fbdb2415c61b6c2516e9b6e29ab4050ec7b..06f8d610a718efd6a9a0c179f288fbde2202315e 100644
(file)
--- a/
commands/server.go
+++ b/
commands/server.go
@@
-121,7
+121,7
@@
func serve(port int) {
if u.Path == "" || u.Path == "/" {
http.Handle("/", fileserver)
} else {
- http.Handle(u.Path
+"/", http.StripPrefix(u.Path+"/"
, fileserver))
+ http.Handle(u.Path
, http.StripPrefix(u.Path
, fileserver))
}
u.Scheme = "http"