* newbie problem - gitweb and git over http
@ 2010-09-02 5:32 J. Bakshi
2010-09-02 5:43 ` J. Bakshi
0 siblings, 1 reply; 2+ messages in thread
From: J. Bakshi @ 2010-09-02 5:32 UTC (permalink / raw)
To: git
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
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: newbie problem - gitweb and git over http
2010-09-02 5:32 newbie problem - gitweb and git over http J. Bakshi
@ 2010-09-02 5:43 ` J. Bakshi
0 siblings, 0 replies; 2+ messages in thread
From: J. Bakshi @ 2010-09-02 5:43 UTC (permalink / raw)
To: git
On Thu, 2 Sep 2010 11:02:42 +0530
"J. Bakshi" <joydeep@infoservices.in> wrote:
<snip>
>
> ``````````````
> The requested URL /index.php was not found on this server
</snip>
gitweb related issue is solved. At /etc/gitweb.conf the following was creating the problem
```````````````````
$feature{'pathinfo'}{'default'} = [1];
```````````````
commenting it has solved the gitweb issue. But no success with webda :-(
> ```````````````````
>
> 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-09-02 6:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-02 5:32 newbie problem - gitweb and git over http J. Bakshi
2010-09-02 5:43 ` J. Bakshi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).