Ubuntu Gitlab http 방식으로 사용시 push commit error – Nginx
Ubuntu에 Gitlab을 http 방식으로 사용시
대량의 파일을 push 할 경우 Push large commit over http fails이 발생하게 된다.
원인은 nginx에서 받는 사이즈의 크기가 오버되어서 발생하는 문제이다.
1 2 3 4 5 6 7 8 | // nginx 설정 파일 수정 (/etc/nginx/nginx.conf) sudo nano /etc/nginx/nginx.conf http { // 상위 또는 하단에 추가 해준다. (사이즈는 알아서 적당히~) # git http post request error client_max_body_size 1000M; } |