diff options
author | Julien Allanos <dju@gentoo.org> | 2005-07-05 22:35:45 +0000 |
---|---|---|
committer | Julien Allanos <dju@gentoo.org> | 2005-07-05 22:35:45 +0000 |
commit | 1c397f132eca037bc54177f2811810f7aa21da48 (patch) | |
tree | 01938507bc35bcee8ec12719eb6549342de2eb9f /www-apps/trac/files | |
parent | Fix for security bug #97458 (diff) | |
download | gentoo-2-1c397f132eca037bc54177f2811810f7aa21da48.tar.gz gentoo-2-1c397f132eca037bc54177f2811810f7aa21da48.tar.bz2 gentoo-2-1c397f132eca037bc54177f2811810f7aa21da48.zip |
Fixed dependencies, updated postinst instructions.
(Portage version: 2.0.51.19)
Diffstat (limited to 'www-apps/trac/files')
-rw-r--r-- | www-apps/trac/files/0.8.4-postinst-en.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www-apps/trac/files/0.8.4-postinst-en.txt b/www-apps/trac/files/0.8.4-postinst-en.txt new file mode 100644 index 000000000000..5ac65f64f07c --- /dev/null +++ b/www-apps/trac/files/0.8.4-postinst-en.txt @@ -0,0 +1,37 @@ +Install Instructions +==================== + +To complete the install, run this commands: + + trac-admin ${MY_HOSTROOT}/trac/<project-name> initenv + +To add security, create a password database. This command is for Apache 2; +adjust for the webserver of your choice. + + htpasswd2 -c ${MY_HOSTROOT}/trac.passwd <user> + +Now, all you need to do is to configure your webserver. This would go +into Apache's .htaccess file; adjust for the webserver of your choice. + + <Location "/cgi-bin/trac.cgi"> + SetEnv TRAC_ENV ${MY_HOSTROOT}/trac/<project-name> + </Location> + <Location "/cgi-bin/trac.cgi/login"> + AuthType Basic + AuthName "trac" + AuthUserFile ${MY_HOSTROOT}/trac.passwd + Require valid-user + </Location> + +More information (multiple projects setup, installation with mod_python...) +can be found on the Trac wiki: + + http://projects.edgewall.com/trac/wiki/ + +Upgrade Instructions +==================== + +If you are upgrading from a previous Trac version, please follow the +instructions here: + + http://projects.edgewall.com/trac/wiki/TracUpgrade |