1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
viewcvs for Debian
----------------------
* Getting start
1. edit following lines of /etc/viewcvs/viewcvs.conf
or you can use debconf to edit following values.
(root)# dpkg-reconfigure -p low viewcvs
# This setting specifies each of the CVS roots on your system and assigns
# names to them. Each root should be given by a "name: path" value. Multiple
# roots should be separated by commas.
cvs_roots = Development : /var/cvs
# this is the name of the default CVS root.
default_root = Development
# This address is shown in the footer of the generated pages.
# It must be replaced with the address of the local CVS maintainer.
address = <a href="mailto:cvs-admin@insert.your.domain.here">Your Name</a>
# modules to hide. see comments in viewcvs.conf for more
forbidden = foo, bar
2. needed for apache httpd.conf
# CGI module
LoadModule cgi_module /usr/lib/apache/1.3/mod_cgi.so
# Aliases
Alias /doc/viewcvs/ /usr/share/viewcvs/
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
# "/usr/lib/cgi-bin" could be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory /usr/lib/cgi-bin/>
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>
# To use CGI scripts:
AddHandler cgi-script .cgi
* About viewcvsd
see viewcvsd(8)
-- Takuo KITAME <kitame@debian.org>, Thu Jul 29 17:25:24 2004
|