Explicitly define timeouts for http and https
This commit is contained in:
parent
bf67dfbc10
commit
594df29dc1
1 changed files with 15 additions and 3 deletions
|
@ -846,8 +846,12 @@ func main() {
|
|||
defer stopAll()
|
||||
|
||||
server := &http.Server{
|
||||
Addr: config.HttpsAddress,
|
||||
TLSConfig: tlsConfig,
|
||||
Addr: config.HttpsAddress,
|
||||
TLSConfig: tlsConfig,
|
||||
IdleTimeout: time.Second * 120,
|
||||
ReadHeaderTimeout: time.Second * 10,
|
||||
ReadTimeout: time.Second * 20,
|
||||
WriteTimeout: time.Second * 60,
|
||||
}
|
||||
|
||||
server.Handler = csrf.Protect(csrfKey)(http.DefaultServeMux)
|
||||
|
@ -856,7 +860,15 @@ func main() {
|
|||
|
||||
errs := make(chan error, 1)
|
||||
go func() {
|
||||
if err := http.ListenAndServe(config.HttpsAddress, http.RedirectHandler(config.BaseURL, http.StatusMovedPermanently)); err != nil {
|
||||
httpRedirector := &http.Server{
|
||||
Addr: config.HttpAddress,
|
||||
Handler: http.RedirectHandler(config.BaseURL, http.StatusMovedPermanently),
|
||||
IdleTimeout: time.Second * 5,
|
||||
ReadHeaderTimeout: time.Second * 10,
|
||||
ReadTimeout: time.Second * 10,
|
||||
WriteTimeout: time.Second * 60,
|
||||
}
|
||||
if err := httpRedirector.ListenAndServe(); err != nil {
|
||||
errs <- err
|
||||
}
|
||||
close(errs)
|
||||
|
|
Loading…
Reference in a new issue