1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/main.go
2017-10-05 05:59:35 +06:00

36 lines
588 B
Go

package main
import (
"log"
"net"
"net/http"
"runtime/debug"
"time"
"golang.org/x/net/netutil"
)
func main() {
// Force garbage collection
go func() {
for _ = range time.Tick(10 * time.Second) {
debug.FreeOSMemory()
}
}()
l, err := net.Listen("tcp", conf.Bind)
if err != nil {
log.Fatal(err)
}
s := &http.Server{
Handler: newHTTPHandler(),
ReadTimeout: time.Duration(conf.ReadTimeout) * time.Second,
MaxHeaderBytes: 1 << 20,
}
log.Printf("Starting server at %s\n", conf.Bind)
log.Fatal(s.Serve(netutil.LimitListener(l, conf.MaxClients)))
}