Commit 55ce310d authored by Jacob Vosmaer's avatar Jacob Vosmaer

Increase default ProxyHeadersTimeout to 5 minutes

parent fb0deba8
......@@ -2,6 +2,10 @@
Formerly known as 'gitlab-git-http-server'.
0.6.4 (unreleased)
Increase default ProxyHeadersTimeout to 5 minutes.
0.6.3
Add support for sending Git raw git blobs via gitlab-workhorse.
......
......@@ -37,7 +37,7 @@ var authBackend = URLFlag("authBackend", upstream.DefaultBackend, "Authenticatio
var authSocket = flag.String("authSocket", "", "Optional: Unix domain socket to dial authBackend at")
var pprofListenAddr = flag.String("pprofListenAddr", "", "pprof listening address, e.g. 'localhost:6060'")
var documentRoot = flag.String("documentRoot", "public", "Path to static files content")
var proxyHeadersTimeout = flag.Duration("proxyHeadersTimeout", time.Minute, "How long to wait for response headers when proxying the request")
var proxyHeadersTimeout = flag.Duration("proxyHeadersTimeout", 5*time.Minute, "How long to wait for response headers when proxying the request")
var developmentMode = flag.Bool("developmentMode", false, "Allow to serve assets from Rails app")
func main() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment