Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. $ git init
  2. $ git add *
  3. $ git commit -m "Initial commit"
  4. $ git remote add zeus http:/domain.com/new.git
  5. $ git push zeus master
  6. Counting objects: 5483, done.
  7. Delta compression using up to 4 threads.
  8. Compressing objects: 100% (5343/5343), done.
  9. error: RPC failed; result=22, HTTP code = 500 | 2.82 MiB/s
  10. fatal: The remote end hung up unexpectedly
  11. Writing objects: 100% (5483/5483), 463.89 MiB | 19.33 MiB/s, done.
  12. Total 5483 (delta 1591), reused 0 (delta 0)
  13. fatal: The remote end hung up unexpectedly
  14. Everything up-to-date
  15.  
  16. location / {
  17.  
  18. client_max_body_size 0;
  19.  
  20. fastcgi_pass unix:/var/run/fcgiwrap.socket;
  21. fastcgi_param GIT_HTTP_EXPORT_ALL "";
  22. fastcgi_param GIT_PROJECT_ROOT /var/gitrepo;
  23. fastcgi_param PATH_INFO $uri;
  24. fastcgi_param SCRIPT_FILENAME /usr/libexec/git-core/git-http-backend;
  25. fastcgi_param REMOTE_USER $remote_user;
  26. include /etc/nginx/fastcgi_params;
  27.  
  28. dav_methods PUT DELETE MKCOL COPY MOVE;
  29. dav_ext_methods PROPFIND OPTIONS;
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement