Hi All,

I have followed the steps in this page to configure http access:

http://www.kernel.org/pub/software/scm/git/docs/howto/setup-git-server-over-http.txt

I am stuck at this stage:
Restart apache2, and check whether http://server/my-new-repo.git gives
a directory listing. If not, check whether apache started up
successfully.

If I try to access my repository from the browser I get the
authentication request it accepts only the correct password but after
that I get
HTTP 404 not found error.

I have added the following in my httpd.conf

SetEnv GIT_PROJECT_ROOT /git/repos
SetEnv GIT_HTTP_EXPORT_ALL
#ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/

<Location /git/repos>
     DAV on
     AuthType Basic
     AuthName "Git"
     AuthUserFile /etc/git-auth-file
     Require valid-user
  </Location>

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.

Reply via email to