Edgewall Software

Changes between Version 120 and Version 121 of TracInstall


Ignore:
Timestamp:
Aug 5, 2005, 11:08:24 AM (19 years ago)
Author:
Paul Baranowski <paul@…>
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v120 v121  
    127127
    128128# You need this to allow users to authenticate
    129 # trac.htpasswd can be created with
    130 # cmd 'htpasswd -c trac.htpasswd' (UNIX)
    131 # do 'man htpasswd' to see all the options
    132129<Location "/cgi-bin/trac.cgi/login">
    133130 AuthType Basic
     
    146143
    147144'''Note:''' If you are using [http://httpd.apache.org/docs/suexec.html Apache suEXEC] feature see [http://projects.edgewall.com/trac/wiki/ApacheSuexec ApacheSuexec] (on the project web site).
     145
     146== Adding Users (optional) ==
     147
     148You need to create the password file in the same place you specified it in the apache config file (the line above that reads "/somewhere/trac.htpasswd"). 
     149
     150Use the following commands to create the password file (do 'man htpasswd' to see all the options):
     151{{{
     152# cd /somewhere
     153# htpasswd -c trac.htpasswd admin
     154New password: <type password>
     155Re-type new password: <type password again>
     156Adding password for user admin
     157}}}
     158
     159After the first user, you dont need the "-c" option anymore:
     160{{{
     161# htpasswd trac.htpasswd john
     162New password: <type password>
     163Re-type new password: <type password again>
     164Adding password for user john
     165}}}
     166
     167After you create the users, you can set their permissions using TracPermissions.
    148168
    149169== Using Trac ==