Edgewall Software

Changes between Version 92 and Version 93 of TracInstall


Ignore:
Timestamp:
Mar 17, 2005, 5:47:49 AM (19 years ago)
Author:
puetzk
Comment:

added link to FastCGI info

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v92 v93  
    2525 * A CGI-capable web server (tested on [http://httpd.apache.org/ Apache]), or
    2626 * [http://httpd.apache.org/ Apache] with [http://www.modpython.org/ mod_python] (see TracModPython)
     27 * A [http://www.fastcgi.com/ FastCGI]-capable web server (see TracFastCgi)
    2728 * [http://docutils.sourceforge.net/ docutils], version >= 0.3.3 (??) for WikiRestructuredText
    2829
     
    8384#You have to allow people to read the files in htdocs
    8485<Directory "/usr/share/trac/htdocs">
    85         Options Indexes MultiViews
    86         AllowOverride None
    87         Order allow,deny
    88         Allow from all
     86 Options Indexes MultiViews
     87 AllowOverride None
     88 Order allow,deny
     89 Allow from all
    8990</Directory>
    9091
     
    9293# Trac need to know where the database is located
    9394<Location "/cgi-bin/trac.cgi">
    94         SetEnv TRAC_ENV "/path/to/projectenv"
     95 SetEnv TRAC_ENV "/path/to/projectenv"
    9596</Location>
    9697
     
    100101# do 'man htpasswd' to see all the options
    101102<Location "/cgi-bin/trac.cgi/login">
    102         AuthType Basic
    103         AuthName "trac"
    104         AuthUserFile /somewhere/trac.htpasswd
    105         Require valid-user
     103 AuthType Basic
     104 AuthName "trac"
     105 AuthUserFile /somewhere/trac.htpasswd
     106 Require valid-user
    106107</Location>
    107108}}}