Edgewall Software

Changes between Version 52 and Version 53 of TracStandalone


Ignore:
Timestamp:
Apr 21, 2008, 11:55:11 PM (16 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v52 v53  
    4242
    4343== Using Authentication ==
     44
     45Using tracd with Apache .htpasswd files:
     46
     47To create a .htpasswd file using htpasswd:
     48
     49{{{
     50sudo htpasswd -c /path/to/env/.htpasswd username
     51}}}
     52then for additional users:
     53{{{
     54sudo htpasswd /var/www/html/.htpasswd-users username2
     55}}}
     56then for starting the tracd:
     57{{{
     58tracd -p 8080 --basic-auth=environmentname,/fullpath/environmentname/.htpasswd,/fullpath/environmentname /fullpath/environmentname
     59}}}
     60
    4461
    4562Tracd provides support for both Basic and Digest authentication. The default is to use Digest; to use Basic authentication, replace `--auth` with `--basic-auth` in the examples below. (You must still specify a dialogic "realm", which can be an empty string by trailing the BASICAUTH with a comma.)