diff options
author | Stuart Herbert <stuart@gentoo.org> | 2004-08-15 15:47:05 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2004-08-15 15:47:05 +0000 |
commit | c95eb2dc7505de1f27ff63a4ffd7a762b1b663ba (patch) | |
tree | c1509810f6366740f378518fe5994d365f5fff97 /www-apps/trac/files | |
parent | Moved from net-www/tikiwiki to www-apps/tikiwiki (diff) | |
download | historical-c95eb2dc7505de1f27ff63a4ffd7a762b1b663ba.tar.gz historical-c95eb2dc7505de1f27ff63a4ffd7a762b1b663ba.tar.bz2 historical-c95eb2dc7505de1f27ff63a4ffd7a762b1b663ba.zip |
Moved from net-www/trac to www-apps/trac.
Diffstat (limited to 'www-apps/trac/files')
-rw-r--r-- | www-apps/trac/files/0.7-postinst-en.txt | 34 | ||||
-rw-r--r-- | www-apps/trac/files/0.7.1-postinst-en.txt | 42 | ||||
-rw-r--r-- | www-apps/trac/files/digest-trac-0.6.1 | 1 | ||||
-rw-r--r-- | www-apps/trac/files/digest-trac-0.7 | 1 | ||||
-rw-r--r-- | www-apps/trac/files/digest-trac-0.7.1 | 1 | ||||
-rw-r--r-- | www-apps/trac/files/postinst-en.txt | 22 |
6 files changed, 101 insertions, 0 deletions
diff --git a/www-apps/trac/files/0.7-postinst-en.txt b/www-apps/trac/files/0.7-postinst-en.txt new file mode 100644 index 000000000000..bdce2bf696ac --- /dev/null +++ b/www-apps/trac/files/0.7-postinst-en.txt @@ -0,0 +1,34 @@ +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; +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> + +Upgrade Instructions +==================== + +If you are upgrading from 0.6.1, please follow the instructions here: + + http://projects.edgewall.com/trac/file/trunk/UPGRADE?rev=487 + +Note that the single .db file has been replaced by a directory, and that +the TRAC_DB environment variable has been renamed as TRAC_ENV. diff --git a/www-apps/trac/files/0.7.1-postinst-en.txt b/www-apps/trac/files/0.7.1-postinst-en.txt new file mode 100644 index 000000000000..7757730d62e8 --- /dev/null +++ b/www-apps/trac/files/0.7.1-postinst-en.txt @@ -0,0 +1,42 @@ +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> + +Upgrade Instructions +==================== + +If you are upgrading from 0.6.1, please follow the instructions here: + + http://projects.edgewall.com/trac/file/trunk/UPGRADE?rev=487 + +Note that the single .db file has been replaced by a directory, and that +the TRAC_DB environment variable has been renamed as TRAC_ENV. + +Running Multiple Copies Of Trac +=============================== + +If you want to run multiple copies of trac on your website, please see Dju's +excellent instructions here: + + http://wiki.dju.elegiac.net/wiki/MultipleTracInstancesOnGentoo diff --git a/www-apps/trac/files/digest-trac-0.6.1 b/www-apps/trac/files/digest-trac-0.6.1 new file mode 100644 index 000000000000..53ea2005b160 --- /dev/null +++ b/www-apps/trac/files/digest-trac-0.6.1 @@ -0,0 +1 @@ +MD5 ecf7295b24d67f1cfb745e233d5a7d7f trac-0.6.1.tar.gz 113146 diff --git a/www-apps/trac/files/digest-trac-0.7 b/www-apps/trac/files/digest-trac-0.7 new file mode 100644 index 000000000000..2bf1e527ab27 --- /dev/null +++ b/www-apps/trac/files/digest-trac-0.7 @@ -0,0 +1 @@ +MD5 c512754b5c812bfab2c4ac5b77cf4fc2 trac-0.7.tar.gz 161831 diff --git a/www-apps/trac/files/digest-trac-0.7.1 b/www-apps/trac/files/digest-trac-0.7.1 new file mode 100644 index 000000000000..a892a809cabd --- /dev/null +++ b/www-apps/trac/files/digest-trac-0.7.1 @@ -0,0 +1 @@ +MD5 3175fb9e4b29c1284c3cd88db3c7f76a trac-0.7.1.tar.gz 168895 diff --git a/www-apps/trac/files/postinst-en.txt b/www-apps/trac/files/postinst-en.txt new file mode 100644 index 000000000000..0b463b7d05a7 --- /dev/null +++ b/www-apps/trac/files/postinst-en.txt @@ -0,0 +1,22 @@ +To complete the install, run this commands: + + trac-admin ${MY_HOSTROOT}/trac.db initdb + +To add security, create a password database. This command is for Apache; +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_DB ${MY_HOSTROOT}/trac.db + </Location> + <Location "/cgi-bin/trac.cgi/login"> + AuthType Basic + AuthName "trac" + AuthUserFile ${MY_HOSTROOT}/trac.passwd + Require valid-user + </Location> |