SetEnabledIgnoreFavicon set IgnoreFavicon Enabled default is false
(isEnabled bool)
| 460 | // SetEnabledIgnoreFavicon set IgnoreFavicon Enabled |
| 461 | // default is false |
| 462 | func (server *HttpServer) SetEnabledIgnoreFavicon(isEnabled bool) { |
| 463 | server.ServerConfig().EnabledIgnoreFavicon = isEnabled |
| 464 | server.Logger().Debug("DotWeb:HttpServer SetEnabledIgnoreFavicon ["+strconv.FormatBool(isEnabled)+"]", LogTarget_HttpServer) |
| 465 | server.RegisterModule(getIgnoreFaviconModule()) |
| 466 | } |
| 467 | |
| 468 | // SetEnabledTLS set tls enabled |
| 469 | // default is false |
nothing calls this directly
no test coverage detected