Edgewall Software

Changes between Version 94 and Version 95 of TracStandalone


Ignore:
Timestamp:
May 12, 2012, 7:15:15 PM (12 years ago)
Author:
felix@…
Comment:

a note about htpasswd only package on ubuntu

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v94 v95  
    171171Basic Authorization can be accomplished via this [http://aspirine.org/htpasswd_en.html online HTTP Password generator].  Copy the generated password-hash line to the .htpasswd file on your system. Note that Windows Python lacks the "crypt" module that is the default hash type for htpasswd ; Windows Python can grok MD5 password hashes just fine and you should use MD5.
    172172
    173 You can use this simple Python script to generate a '''digest''' password file:
     173On Ubuntu you can install the htpasswd tool without apache like so:
     174{{{
     175sudo apt-get install libapache-htpasswd-perl
     176}}}
     177
     178Or you could use this simple Python script to generate a '''digest''' password file:
    174179
    175180{{{