[BACK]Return to cvsweb-httpd.conf CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb / samples

Annotation of cvsweb/samples/cvsweb-httpd.conf, Revision 3.1

3.1     ! scop        1: #                                                                -*- apache -*-
        !             2: # $FreeBSD$
        !             3: #
        !             4: # Sample configuration file snippet for running FreeBSD-CVSweb
        !             5: # with Apache.  Include this in your httpd.conf and modify the
        !             6: # paths according to your setup.
        !             7:
        !             8: # Note: this affects all mod_perl scripts in the server, not just cvsweb.cgi.
        !             9: # mod_perl >= 1.99:
        !            10: <IfModule mod_perl.c>
        !            11: PerlSwitches -T
        !            12: </IfModule>
        !            13:
        !            14: <Location /cgi-bin/cvsweb.cgi>
        !            15:
        !            16:    # See also $charset in cvsweb.conf.
        !            17:    #AddDefaultCharset UTF-8
        !            18:
        !            19:    # mod_perl >= 1.99:
        !            20:    <IfModule mod_perl.c>
        !            21:    SetHandler perl-script
        !            22:    PerlResponseHandler ModPerl::Registry
        !            23:    PerlOptions +ParseHeaders
        !            24:    Options ExecCGI
        !            25:    </IfModule>
        !            26:
        !            27:    #mod_perl < 1.99:
        !            28:    # TODO
        !            29:
        !            30: </Location>

CVSweb