blob: 247275645a28cb09b861c2719a46bc485a4a5355 (
plain)
1 # $Id:
2
3 REQUIREMENTS:
4
5 PRECAUTION:
6
7 If you are upgrading a previous installation see
8 http://ftp.edgewall.org/wiki/TracUpgrade
9
10 PRE-INSTALL:
11
12 POST-INSTALL
13
14 Read the instructions on
15 http://projects.edgewall.com/trac/wiki/TracInstall
16
17 to set up a repository
18
19 PRE-REMOVE:
20
21 POST-REMOVE:
22
23 NOTES:
24
25 For now the only documentation available is located on
26 http://trac.edgewall.org/
27
28 My apache config looks like this:
29
30 Alias /trac/ "/usr/share/trac/htdocs/"
31 <Location "/cgi-bin/trac.cgi">
32 SetEnv TRAC_DB "/var/lib/trac/trac.db"
33 </Location>
34
35 # You need something like this to authenticate users
36 <Location "/cgi-bin/trac.cgi/login">
37 AuthType Basic
38 AuthName "svnjw"
39 AuthUserFile /somewhere/trac.htpasswd
40 Require valid-user
41 </Location>
42
43 Adjust AuthUserFile to your needs
|