Edgewall Software

Changes between Version 4 and Version 5 of TracInstall


Ignore:
Timestamp:
Feb 2, 2004, 11:16:41 PM (20 years ago)
Author:
Jonas Borgström
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v4 v5  
    5050== Configuring Apache ==
    5151
    52 copy "{{{trac/cgi-bin/trac.cgi}}}" and "{{{trac/cgi-bin/trac_auth.cgi}}}" to
     52copy "{{{trac/cgi-bin/trac.cgi}}}" to
    5353you webservers {{{/cgi-bin/}}} directory. Of course you can configure apache
    5454to use the "{{{trac/cgi-bin/}}}" directory directly if you like.
     
    5959Alias /trac/ "/where/you/put/trac/htdocs/"
    6060# Trac need to know where the database is located
    61 <Location "/cgi-bin/">
     61<Location "/cgi-bin/trac.cgi">
    6262  SetEnv TRAC_DB "/somewhere/myproject.db"
    6363</Location>
    6464
    65 # Uncomment this to let users authenticate
    66 <Location "/cgi-bin/trac_auth.cgi">
     65# You need this to let users authenticate
     66<Location "/cgi-bin/trac.cgi/login">
    6767  AuthType Basic
    6868  AuthName "trac"