Edgewall Software

Changes between Version 47 and Version 48 of TracStandalone


Ignore:
Timestamp:
Dec 22, 2007, 10:23:42 PM (16 years ago)
Author:
gavenko_a
Comment:

add md5sum method to generate digest-password file

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v47 v48  
    125125Note: If you would like to use --basic-auth you need to use htpasswd tool from apache server to generate .htpasswd file. The remaining part is similar but make sure to use empty realm (i.e. coma after path). When using on Windows make sure to use -m option for it (did not tested it on *nix, so not sure if that is the case there).
    126126
     127It is possible to use md5sum utility to generate digest-password file using such method:
     128{{{
     129echo -e "${user}:trac:${password}\c" | md5sum - >>to-file
     130}}}
     131and manually delete " -" from the end and add "${user}:trac:" to the start of line from 'to-file'.
     132
    127133== Tips ==
    128134