Edgewall Software

Changes between Version 35 and Version 36 of TracStandalone


Ignore:
Timestamp:
Mar 29, 2007, 1:57:38 AM (17 years ago)
Author:
jtw90210
Comment:

it's -a or —auth=

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v35 v36  
    4646If 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:
    4747{{{
    48  $ tracd -p 8080 --auth project1,/path/to/users.htdigest,mycompany.com /path/to/project1
     48 $ tracd -p 8080 --auth=project1,/path/to/users.htdigest,mycompany.com /path/to/project1
    4949}}}
    5050
     
    5454{{{
    5555 $ tracd -p 8080 \
    56    --auth project1,/path/to/users.htdigest,mycompany.com \
    57    --auth project2,/path/to/users.htdigest,mycompany.com \
     56   --auth=project1,/path/to/users.htdigest,mycompany.com \
     57   --auth=project2,/path/to/users.htdigest,mycompany.com \
    5858   /path/to/project1 /path/to/project2
    5959}}}
     
    6363{{{
    6464 $ tracd -p 8080 \
    65    --auth *,/path/to/users.htdigest,mycompany.com \
     65   --auth=*,/path/to/users.htdigest,mycompany.com \
    6666   /path/to/project1 /path/to/project2
    6767}}}