Edgewall Software

Changes between Version 33 and Version 34 of TracCgi


Ignore:
Timestamp:
Sep 16, 2008, 6:10:21 PM (16 years ago)
Author:
xlax@…
Comment:

In apache≥2.2 AuthDigestFile should be AuthUserFile

Legend:

Unmodified
Added
Removed
Modified
  • TracCgi

    v33 v34  
    142142}}}
    143143
    144 For better security, it is recommended that you either enable SSL or at least use the “Digest” authentication scheme instead of “Basic”. Please read the [http://httpd.apache.org/docs/2.0/ Apache HTTPD documentation] to find out more. For example, on a Debian 4.0r1 (etch) system the relevant section  in apache configuration can look like this:
     144For better security, it is recommended that you either enable SSL or at least use the “digest” authentication scheme instead of “Basic”. Please read the [http://httpd.apache.org/docs/2.0/ Apache HTTPD documentation] to find out more. For example, on a Debian 4.0r1 (etch) system the relevant section  in apache configuration can look like this:
    145145{{{
    146146<Location "/trac/login">
     
    149149    AuthName "trac"
    150150    AuthDigestDomain /trac
    151     AuthDigestFile /somewhere/trac.htpasswd
     151    AuthUserFile /somewhere/trac.htpasswd
    152152    Require valid-user
    153153</Location>