hi, i have an instance of gitlab on prem behind traefik,
if i try to push to gitlab excluding traefik everything works correctly, however if i try to push with traefik in between, i get the following error:
Pushing to https://gitlab.company.it/developer/apache-superset.git
Enumerating objects: 6367, done.
Counting objects: 100% (6367/6367), done.
Delta compression using up to 8 threads
Compressing objects: 100% (6240/6240), done.
Writing objects: 100% (6365/6365), 148.38 MiB | 19.95 MiB/s, done.
Total 6365 (delta 2014), reused 0 (delta 0), pack-reused 0 (from 0)
POST git-receive-pack (155585598 bytes)
error: RPC failed; HTTP 499 curl 22 The requested URL returned error: 499
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date
traefik label:
labels:
- "traefik.enable=true"
- "traefik.http.routers.gitlab-mgmt-01.rule=Host(`${GITLAB_HOSTNAME}`)"
- "traefik.http.routers.gitlab-mgmt-01.service=gitlab-mgmt-01"
- "traefik.http.routers.gitlab-mgmt-01.entrypoints=websecure"
- "traefik.http.services.gitlab-mgmt-01.loadbalancer.server.port=80"
- "traefik.http.routers.gitlab-mgmt-01.tls=true"
- "traefik.http.services.gitlab-mgmt-01.loadbalancer.passhostheader=true"
- "traefik.http.routers.gitlab-mgmt-01.middlewares=compresstraefik"
- "traefik.http.middlewares.compresstraefik.compress=true"
In the traefik logs I see no errors, but I see the error in the access log.
are there any default upload/timeout limits?
how can i increase them via docker labels?
i use version 3.0.0
Thanks