1. 30 Oct, 2015 3 commits
  2. 29 Oct, 2015 1 commit
  3. 26 Oct, 2015 2 commits
  4. 17 Oct, 2015 2 commits
  5. 15 Oct, 2015 3 commits
  6. 10 Oct, 2015 6 commits
  7. 09 Oct, 2015 1 commit
  8. 08 Oct, 2015 4 commits
  9. 07 Oct, 2015 4 commits
  10. 06 Oct, 2015 6 commits
  11. 04 Oct, 2015 5 commits
  12. 03 Oct, 2015 1 commit
  13. 02 Oct, 2015 2 commits
    • Jacob Vosmaer's avatar
      eeb0410d
    • Jacob Vosmaer's avatar
      Merge branch 'send-user-agent' into 'master' · 8708f1dc
      Jacob Vosmaer authored
      Add custom "User-Agent" header to auth requests
      
      This makes it a lot easier to proxy requests to gitlab-git-http-server when Gitlab is running inside Passenger (or similiar) and therefore does not have a dedicated port.
      
      Example Apache config:
      ~~~~
      RewriteEngine on
      RewriteCond "%{REQUEST_URI}" "^[-/\w\.]+\.git/"
      RewriteCond "%{HTTP_USER_AGENT}" "!=gitlab-git-http-server"
      RewriteRule . http://127.0.0.1:8181%{REQUEST_URI} [P,QSA]
      ~~~~
      
      See merge request !1
      8708f1dc