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

Fixes redirect from / to /ui when internal UI is enabled.
This commit is contained in:
Ryan Breen 2016-02-12 19:26:59 -05:00
commit 73f700a9a0
1 changed files with 8 additions and 2 deletions

View File

@ -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
}