After I upgraded, I now get this error on pushes and pulls. Before the 
update everything worked fine.

fatal: protocol error: bad line length character: 703
fatal: The remote end hung up unexpectedly

I read some pages from months ago with similar errors, but nothing seemed 
to work or have anything to do with my setup. I don't use https and I 
haven't changed anything else configuration wise since the last update.

nginx.conf:
user www-data;
worker_processes  4;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
    # multi_accept on;
}

http {
    include       /etc/nginx/mime.types;

    access_log  /var/log/nginx/access.log;
    client_max_body_size 500M;
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  120;
    tcp_nodelay        on;

    gzip  on;
    gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

nginx/sites-enabled/gitlab:

server {
    listen 0.0.0.0:80;
    include /etc/nginx/include/gitlab-proxy;
}

server {
    listen 0.0.0.0:443;
    include /etc/nginx/include/ssl;
    include /etc/nginx/include/gitlab-proxy;
}


gitlab-shell/bin/check output:
Check GitLab API access: OK
Check directories and files:
        /home/git/repositories: OK
        /home/git/.ssh/authorized_keys: OK
Test redis-cli executable: redis-cli 2.4.15
Send ping to redis server: PONG

bundle exec rake gitlab:env:info RAILS_ENV=production:
System information
System:         Debian 6.0.8
Current User:   git
Using RVM:      no
Ruby Version:   1.9.3p327
Gem Version:    1.8.23
Bundler Version:1.3.5
Rake Version:   10.1.0

GitLab information
Version:        6.4.3
Revision:       42131d0
Directory:      /home/git/gitlab
DB Adapter:     mysql2
URL:            http://git.<private>.com
HTTP Clone URL: http://git.<private>.com/some-project.git
SSH Clone URL:  git@git.<private>.com:some-project.git
Using LDAP:     yes
Using Omniauth: no

GitLab Shell
Version:        1.8.0
Repositories:   /home/git/repositories/
Hooks:          /home/git/gitlab-shell/hooks/
Git:            /usr/bin/git

bundle exec rake gitlab:check RAILS_ENV=production:
Everything is green.

What do I do?

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to