Browse Source

Merge pull request #1713 from hashicorp/b-internal-ui-redirect

Fixes redirect from / to /ui when internal UI is enabled.
pull/1715/head
Ryan Breen 9 years ago
parent
commit
3eb3087032
  1. 10
      command/agent/http.go

10
command/agent/http.go

@ -363,6 +363,11 @@ func (s *HTTPServer) wrap(handler func(resp http.ResponseWriter, req *http.Reque
return f
}
// Returns true if the UI is enabled.
func (s *HTTPServer) IsUIEnabled() bool {
return s.uiDir != "" || s.agent.config.EnableUi
}
// Renders a simple index page
func (s *HTTPServer) Index(resp http.ResponseWriter, req *http.Request) {
// Check if this is a non-index path
@ -371,8 +376,9 @@ func (s *HTTPServer) Index(resp http.ResponseWriter, req *http.Request) {
return
}
// Check if we have no UI configured
if s.uiDir == "" {
// Give them something helpful if there's no UI so they at least know
// what this server is.
if !s.IsUIEnabled() {
resp.Write([]byte("Consul Agent"))
return
}

Loading…
Cancel
Save