On Sat, Jun 07, 2008 at 12:19:26AM -0700, Ask Bjørn Hansen wrote: > Also add a few more hints for how to setup and configure gitweb as described > --- > gitweb/README | 18 ++++++++++++++---- > 1 files changed, 14 insertions(+), 4 deletions(-) > > The important change is to add HEAD into the regexp, everything else is > optional... > > diff --git a/gitweb/README b/gitweb/README > index 8f7ea36..b96834b 100644 > --- a/gitweb/README > +++ b/gitweb/README > @@ -255,12 +255,15 @@ Webserver configuration > If you want to have one URL for both gitweb and your http:// > repositories, you can configure apache like this: > > -<VirtualHost www:80> > - ServerName git.domain.org > +<VirtualHost *:80> > + ServerName git.example.org > DocumentRoot /pub/git > - RewriteEngine on > - RewriteRule ^/(.*\.git/(?!/?(info|objects|refs)).*)?$ /cgi-bin/gitweb.cgi%{REQUEST_URI} [L,PT] > SetEnv GITWEB_CONFIG /etc/gitweb.conf > + RewriteEngine on > + # make the front page an internal rewrite to the gitweb script > + RewriteEngine ^/$ /cgi-bin/gitweb.cgi You meant RewriteRule, right ? Mike -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html