On 2/10/15, Jeff Rogers <dv...@diphi.com> wrote:
> Hi all,
>
> There aren't a lot of restrictions on where to name and locate
> repository files, but I was wondering what the common practices are.
>

I keep most of my Fossil repos in a common directory: ~/www/repos.  I
currently have 64 of them sitting there.

I keep them all in once place so that I can easily launch a Fossil
server against them all at once using a single script.  I use xinetd
for this.  My /etc/xinetd.d/http-alt file says:

service http-alt
{
  port = 591
  socket_type = stream
  wait = no
  user = root
  server = /home/drh/bin/fossil
  server_args = http /home/drh/www/repos/ --errorlog /errors.txt
--localauth --files *
}

Then in Firefox I have toolbar bookmarks to common work sites like
"http://localhost:591/fossil";

-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to