Edgewall Software

Version 5 (modified by Christian Boos, 19 years ago) ( diff )

Added htdigest authentication sample for multiple project and notes for tracd on Windows

This page documents the 1.4 (latest stable) release. Documentation for other releases can be found here.

Tracd

Tracd is a lightweight stand-alone Trac server. In most cases it's easier to setup and runs faster than trac.cgi.

Note: tracd is still experimental.

Pros

  • Fewer dependencies: You don't need to install apache or any other web-server.
  • Fast: Should be as fast as the TracModPython version (much faster than the cgi).

Cons

  • Less features: Tracd implements a very simple web-server and is not as configurable as apache.
  • Only htdigest authentication: Tracd can currently only authenticate users against apache-htdigest files.
  • No native https support: sslwrap can be used instead.

Usage examples

A single project on port 8080. (http://localhost:8080/)

 $ tracd -p 8080 /path/to/project

With more than one project. (http://localhost:8080/project1/ and http://localhost:8080/project2/)

 $ tracd -p 8080 /path/to/project1 /path/to/project2

With htdigest authentication. The file /tmp/users.htdigest contain user accounts for project1 with the realm "mycompany.com".

 $ tracd -p 8080 --auth project1,/tmp/users.htdigest,mycompany.com /path/to/project1

htdigest authentication can also be used for more than one project. The digest file can be shared:

 $ tracd -p 8080 \
   --auth project1,/tmp/users.htdigest,mycompany.com \
   --auth project2,/tmp/users.htdigest,mycompany.com \
   /path/to/project1 /path/to/project2

Tracd on Windows

tracd also works on Windows. But on that platform, the sensitivity on multithread issues is high. tracd is not (yet!) very robust in multithread mode, see for example #1401 and #1721 for some of the issues…

I recently found out that all the occasional problems (i.e. crashes) I had can be avoided by telling tracd to operate in single-threaded mode:

  • trac/web/standalone.py

     
    124124        return auth['username']
    125125
    126126
    127 class TracHTTPServer(ThreadingMixIn, HTTPServer):
     127class TracHTTPServer(HTTPServer):
    128128
    129129    projects = None

See also: README.tracd, TracGuide, TracInstall, TracModPython

Note: See TracWiki for help on using the wiki.