> > I wrote down what I did in my blog, in case anyone is interested in > reading the experiences of another newbie: > > http://bkhome.org/blog/?viewDetailed=01200 > http://bkhome.org/blog/?viewDetailed=01201
Regarding hiding whatever.cgi, here's how I do it. I keep CGI script (for multiple repositories, from http://www.fossil-scm.org/index.html/wiki?name=Cookbook) in /cgi-bin/public.cgi on my server. In the Apache config for my virtual host I have: <VirtualHost *:80> ... ScriptAlias /p /home/path-to-website/cgi-bin/public.cgi ... (I don't think that ScriptAlias works from .htaccess, though). This way http://codingrobots.org/p maps to public.cgi, which serves repositories, and I have nice URLs like http://codingrobots.org/p/qlfossil -- Dmitry Chestnykh Coding Robots http://www.codingrobots.com [email protected] _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

