Edgewall Software

Changes between Version 42 and Version 43 of TracStandalone


Ignore:
Timestamp:
Nov 1, 2007, 1:17:50 AM (16 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v42 v43  
    4747  ''Support for Basic authentication was added in version 0.9.''
    4848
    49 If the file `/path/to/users.htdigest` contains user accounts for project1 with the realm "mycompany.com", you'd use the following command-line to start tracd:
     49The general format for using authentication is:
     50
     51{{{
     52 $ tracd -p port --auth=base_project_dir,password_file_path,realm project_path
     53}}}
     54
     55where:
     56
     57 * '''base_project_dir''' is the base directory of the project; note: this doesn't refer to the project name, and it is case-sensitive even for windows environments
     58 * '''password_file_path''' path of the password file
     59 * '''realm''' realm
     60 * '''project_path''' path of the project
     61
     62Example:
     63
    5064{{{
    5165 $ tracd -p 8080 \
    5266   --auth=project1,/path/to/users.htdigest,mycompany.com /path/to/project1
    5367}}}
    54 
    55 '''Note''': the project "name" passed to the `--auth` option is the base name of the project environment directory.
    56 
    5768Of course, the digest file can be be shared so that it is used for more than one project:
    5869{{{