Edgewall Software

Changes between Version 182 and Version 183 of TracOnWindows


Ignore:
Timestamp:
Aug 29, 2006, 5:06:17 AM (18 years ago)
Author:
anoop
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnWindows

    v182 v183  
    351351}}}
    352352
    353   If you want to configure a friendly URL, like http://hostname/trac, the following configuration can be used
     353  If you want to configure a friendly URL, like http://hostname/trac, the following configuration can be used instead of the appropriate sections above
    354354
    355355{{{
    356356# TRAC
    357 # The directive below transfers the serving up of static content to Apache
     357
     358# Transfer serving up of static content to Apache
    358359Alias /trac/chrome/common "C:/Program Files/Python2.3.5/share/trac/htdocs"
    359360
    360361# Alias for the friendly URL
    361 ScriptAlias /trac "C:/Program Files/Apache Group/Apache2/cgi-bin/trac.cgi"
     362ScriptAlias /trac "C:/Program Files/Python2.3.5/share/trac/cgi-bin/trac.cgi"
    362363<Location "/trac">
    363364  SetEnv TRAC_ENV "c:/svn/repo_trac.db"
     
    368369  # SetEnv TMP "c:/svn/trac.db/tmp
    369370</Location>
    370 
    371 # Restrict access to the login page
    372 <Location "/trac/login">
    373   AuthType Basic
    374   AuthName "trac"
    375   AuthUserFile C:/svn/.htaccess
    376   Require valid-user
    377 </Location>
    378 
    379 <Directory "C:/Program Files/Python2.3.5/share/trac/htdocs">
    380   Options Indexes MultiViews
    381   AllowOverride None
    382   Order allow,deny
    383   Allow from all
    384 </Directory>
    385371}}}
    386372