I installed a local Gitea server with Docker.
Now I am trying to push several data files to a repo, and the files are very big (the largest is 9.2 Gb and the second largest is 2.5Gb) so I use Git LFS (I set up Gitea accordingly).
The 2.5 Gb file uploaded nicely, but I am unable to push the last one (9.2 Gb), I have the message:
Uploading LFS objects: 89% (8/9), 11 GB | 49 MB/s
but than just few seconds after it restart at 5.6GB -> 11GB like an endless repetition...
I've set these variables in /etc/php5/apache2/php.ini
:
post_max_size = 1000G
upload_max_filesize = 1000G
I also launched GIT_TRACE=1 GIT_CURL_VERBOSE=1 git push
to check for any error message but the only relevant things I see is < HTTP/1.1 500 Internal Server Error [....] Fatal error: Server error: https://www....
and I don't know what to try else...
Any ideas where the issue could be ?