1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

Removes timeout

This commit is contained in:
Amir Raminfar
2018-12-03 21:05:26 -08:00
parent 8c2ad64439
commit 09a8ace624

View File

@@ -73,11 +73,8 @@ func main() {
s.PathPrefix("/").Handler(http.StripPrefix(base, http.HandlerFunc(h.index)))
srv := &http.Server{
Addr: addr,
WriteTimeout: time.Second * 15,
ReadTimeout: time.Second * 15,
IdleTimeout: time.Second * 60,
Handler: r,
Addr: addr,
Handler: r,
}
go func() {