diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-06-15 05:09:46 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-15 05:09:46 -0500 |
commit | b6304352d73100269888203a2861047e5955068a (patch) | |
tree | 86343dcc26e9483e100d0f18688514197d7604dd /development/viewvc/README.SLACKWARE | |
parent | b951c756c68a42a4bd81d06e0277051e8ad2f965 (diff) | |
download | slackbuilds-b6304352d73100269888203a2861047e5955068a.tar.gz |
development/viewvc: Added (cvs/svn browser interface)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/viewvc/README.SLACKWARE')
-rw-r--r-- | development/viewvc/README.SLACKWARE | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/development/viewvc/README.SLACKWARE b/development/viewvc/README.SLACKWARE new file mode 100644 index 0000000000..411ed57740 --- /dev/null +++ b/development/viewvc/README.SLACKWARE @@ -0,0 +1,38 @@ +README.SLACKWARE +================ + +After installing the package, follow these minimal steps to setup ViewVC: + +1) Edit /etc/viewvc.conf +------------------------ + +At least set 'svn_roots' or 'cvs_roots' to your local repository. + +This configuration file is very well documented, so do read through it. + +2) Edit /etc/httpd/httpd.conf +----------------------------- + +Look for the section where the ScriptAliases are defined and add: + + ScriptAlias /viewvc "/opt/viewvc/bin/cgi/viewvc.cgi" + +Also add this section to allow access to the scripts: + + <Directory "/opt/viewvc/bin/cgi"> + AllowOverride None + Options None + Order allow,deny + Allow from all + </Directory> + +3) Restart httpd +---------------- + +# /etc/rc.d/rc.httpd restart + +4) Read the documentation! +-------------------------- + +Read at least the INSTALL document in /usr/doc/viewvc-<version>/ and check +for more documentation at http://viewvc.tigris.org/ |