From: "J. Bakshi" <joydeep@infoservices.in>
To: git@vger.kernel.org
Subject: newbie problem - gitweb and git over http
Date: Thu, 2 Sep 2010 11:02:42 +0530 [thread overview]
Message-ID: <20100902110242.2da0c81d@debian> (raw)
Hello,
I am a newbie in git technology, please bear with me. I am interested to implement git over http along with gitweb.
At first I have already created a demo git repository in the server
``````````````
$ cd (project-directory)
$ git init
$ (add some files)
$ git add .
$ git commit -m 'Initial commit'
````````````````
Then I have set gitweb in apache
```````````````
Alias /gitweb /var/gitdir/
RewriteEngine On
RewriteRule ^gitweb$ gitweb/ [R]
SetEnv GITWEB_CONFIG /etc/gitweb.conf
<Directory "/var/gitdir/">
AllowOverride AuthConfig
Options +ExecCGI +Indexes
Order allow,deny
Allow from all
DirectoryIndex gitweb.cgi
SetEnv GITWEB_CONFIG "/etc/gitweb.conf"
AddHandler cgi-script .cgi
</Directory>
``````````````````````````
After restating apache I can see gitweb at http://192.168.1.1/gitweb ; but clicking on the demo project, which I have created; just gives an error as
``````````````
The requested URL /index.php was not found on this server
```````````````````
webdav is already running in this server for some other project. I have setup webdav for git like
`````````
<IfModule mod_dav_svn.c>
<Location /myproject.git>
Dav on
AuthType Basic
AuthName "My repo with git"
AuthUserFile /home/svn/PASSWORD
<Limitexcept GET HEAD PROPFIND OPTIONS REPORT>
Require valid-user
</Limitexcept>
</Location>
</IfModule>
```````````````
Now testing with cadaver
`````````````````
cadaver https://192.168.1.1/gitweb/test.git
Authentication required for Write access requires a password on server `192.168.1.1':
Username: svnadmin
Password:
Could not open collection:
404 Not Found
``````````````````````
I think for both the cases there are some configuration problem which can't find the correct location/path. Could anyone kindly enlighten me, actually where the problem is ?
Thanks for your time
next reply other threads:[~2010-09-02 5:43 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-02 5:32 J. Bakshi [this message]
2010-09-02 5:43 ` newbie problem - gitweb and git over http J. Bakshi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100902110242.2da0c81d@debian \
--to=joydeep@infoservices.in \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.