diff --git a/aperture.go b/aperture.go index 95a3193..95fd766 100644 --- a/aperture.go +++ b/aperture.go @@ -381,9 +381,9 @@ func (a *Aperture) Start(errChan chan error) error { a.httpsServer = &http.Server{ Addr: a.cfg.ListenAddr, Handler: handler, - IdleTimeout: 0, - ReadTimeout: 0, - WriteTimeout: 0, + IdleTimeout: time.Minute * 2, + ReadTimeout: time.Second * 15, + WriteTimeout: time.Second * 30, } // Create TLS configuration by either creating new self-signed certs or