mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Fix GO-S2114 security issue
See https://deepsource.io/directory/analyzers/go/issues/GO-S2114
This commit is contained in:
parent
a7a0e23956
commit
2a3cd08f20
2 changed files with 8 additions and 1 deletions
|
@ -41,6 +41,8 @@ const (
|
||||||
RequestThrottleBacklogLimit = 100
|
RequestThrottleBacklogLimit = 100
|
||||||
RequestThrottleBacklogTimeout = time.Minute
|
RequestThrottleBacklogTimeout = time.Minute
|
||||||
|
|
||||||
|
ServerReadHeaderTimeout = 3 * time.Second
|
||||||
|
|
||||||
ArtistInfoTimeToLive = 24 * time.Hour
|
ArtistInfoTimeToLive = 24 * time.Hour
|
||||||
|
|
||||||
I18nFolder = "i18n"
|
I18nFolder = "i18n"
|
||||||
|
|
|
@ -45,7 +45,12 @@ var startTime = time.Now()
|
||||||
func (s *Server) Run(addr string) error {
|
func (s *Server) Run(addr string) error {
|
||||||
s.MountRouter("WebUI", consts.URLPathUI, s.frontendAssetsHandler())
|
s.MountRouter("WebUI", consts.URLPathUI, s.frontendAssetsHandler())
|
||||||
log.Info("Navidrome server is ready!", "address", addr, "startupTime", time.Since(startTime))
|
log.Info("Navidrome server is ready!", "address", addr, "startupTime", time.Since(startTime))
|
||||||
return http.ListenAndServe(addr, s.router)
|
server := &http.Server{
|
||||||
|
Addr: addr,
|
||||||
|
ReadHeaderTimeout: consts.ServerReadHeaderTimeout,
|
||||||
|
}
|
||||||
|
|
||||||
|
return server.ListenAndServe()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) initRoutes() {
|
func (s *Server) initRoutes() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue