Edgewall Software

Changes between Version 9 and Version 10 of TracStandalone


Ignore:
Timestamp:
Sep 5, 2005, 12:21:40 PM (19 years ago)
Author:
Christian Boos
Comment:

Rewrote the part about multithreading issues on Windows

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v9 v10  
    33Tracd is a lightweight stand-alone Trac server. In most cases it's easier to setup and runs faster than trac.cgi.
    44
    5 '''Note: tracd is still experimental.'''
    65
    76== Pros ==
     
    1413 * Less features: Tracd implements a very simple web-server and is not as configurable as apache.
    1514 * Only htdigest authentication: Tracd can currently only authenticate users against apache-htdigest files.
    16  * No native https support: [http://www.rickk.com/sslwrap/ sslwrap] can be used instead.
     15 * No native https support: [http://www.rickk.com/sslwrap/ sslwrap] can be used instead,
     16   or [http://lists.edgewall.com/archive/trac/2005-August/004381.html STUNNEL].
    1717
    1818== Usage examples ==
     
    4141== Tracd on Windows ==
    4242
    43 tracd also works on Windows. But on that platform,
    44 the sensitivity on multithread issues is high.
    45 tracd is not (yet!) very robust in multithread mode,
    46 see for example #1401 and #1721 for some of the issues...
    47 
    48 I recently found out that all the occasional problems
    49 (i.e. crashes) I had can be avoided by telling tracd
    50 to operate in single-threaded mode:
     43tracd also works on Windows.
     44But on that platform, the sensitivity on multithreading issues is high,
     45and you ''might'' have problems (i.e. crashes of the Python interpreter).
     46If this happens, you can force tracd to operate in single-threaded mode:
    5147{{{
    5248#!text/x-diff
     
    6460     projects = None
    6561}}}
     62
     63Please also report any such issue, as they are believed to be fixed by now.
     64
    6665
    6766== Generating passwords on Windows ==