Edgewall Software

Changes between Version 19 and Version 20 of TracInstall


Ignore:
Timestamp:
Mar 27, 2004, 2:10:30 PM (20 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v19 v20  
    6161{{{
    6262Alias /trac/ "/where/you/put/trac/htdocs/"
     63#You have to allow people to read the files in htdocs
     64<Directory "/usr/share//trac/htdocs/">
     65        Options Indexes MultiViews
     66        AllowOverride None
     67        Order allow,deny
     68        Allow from all
     69</Directory>
     70
     71
    6372# Trac need to know where the database is located
    6473<Location "/cgi-bin/trac.cgi">
     
    6776
    6877# You need this to allow users to authenticate
     78# trac.htpasswd can be created with
     79# cmd 'htpasswd -c trac.htpasswd' (UNIX)
     80# do 'man htpasswd' to see all the options
    6981<Location "/cgi-bin/trac.cgi/login">
    7082        AuthType Basic