- control: allow requests to "/favicon.ico" while we are in install mode

This commit is contained in:
Simon Zolin 2019-05-23 16:28:20 +03:00
parent aa2d942783
commit dece393d6a

View file

@ -140,7 +140,9 @@ func preInstallHandler(handler http.Handler) http.Handler {
// it also enforces HTTPS if it is enabled and configured
func postInstall(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
if config.firstRun && !strings.HasPrefix(r.URL.Path, "/install.") {
if config.firstRun &&
!strings.HasPrefix(r.URL.Path, "/install.") &&
r.URL.Path != "/favicon.ico" {
http.Redirect(w, r, "/install.html", http.StatusSeeOther) // should not be cacheable
return
}