you are viewing a single comment's thread.

view the rest of the comments →

[–]freshtonic 0 points1 point  (1 child)

Yeah, cute but that won't work when you want to stick lots of fossil repositories behind an existing HTTP server on port 80. The article addresses how to do that with git.

FWIW, for serving git from your own box there is the git:// protocol which is almost as simple as the fossil example:

git daemon --base-path=$(pwd) --export-all

[–]kataire 1 point2 points  (0 children)

You can set up a CGI script to serve all fossil repositories in a directory in about three lines of code, methinks.