37b67643e8
* Set timeout values when configuring the HTTP server to mitigate "Slowloris" vulnerability https://gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/-/merge_requests/91
42 lines
980 B
Go
42 lines
980 B
Go
package server
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"time"
|
|
|
|
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/cfg"
|
|
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/collector/textfile"
|
|
)
|
|
|
|
func StartServer(
|
|
appSettings *cfg.AppSettings,
|
|
textFileCollector *textfile.Collector,
|
|
) chan error {
|
|
http.HandleFunc("/", AuthMiddleware(
|
|
rootHtmlHandler,
|
|
appSettings.AuthProvider,
|
|
))
|
|
http.HandleFunc(metricsPath, AuthMiddleware(
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
metricHandler(w, r, textFileCollector)
|
|
},
|
|
appSettings.AuthProvider,
|
|
))
|
|
log.Printf("metrics available at '%s'", metricsPath)
|
|
|
|
svrErr := make(chan error)
|
|
go func() {
|
|
httpServer := &http.Server{
|
|
Addr: appSettings.MetricsAddress,
|
|
ReadHeaderTimeout: 10 * time.Second,
|
|
ReadTimeout: 10 * time.Second,
|
|
WriteTimeout: 10 * time.Second,
|
|
IdleTimeout: 30 * time.Second,
|
|
}
|
|
svrErr <- httpServer.ListenAndServe()
|
|
}()
|
|
log.Print("ready")
|
|
return svrErr
|
|
}
|