Set the write deadline in the /reports/*
handlers using a response controller.
For example, add this line to the handler to set the timeout to 10 minutes:
http.NewResponseController(rw).SetWriteDeadline(time.Now().Add(10 * 60 * time.Second)
The idle timeout is not relevant to your problem.