Return to Snippet

Revision: 4578
at January 11, 2008 15:26 by d3f0


Initial Code
# Password zone
        <Location /hg/ecla>
                AuthType Basic
                Order allow,deny
                Allow from all
                AuthName "Mercurial private area"
                Require valid-user
                AuthUserFile  /var/hg/passfile.pass
        </Location>


        RewriteEngine on
        RewriteRule ^/hg(.*) /var/hg/hgwebdir.cgi$1

        <Directory "/var/hg/">
                Options ExecCGI
                AddHandler cgi-script .cgi
        </Directory>

Initial URL


Initial Description


Initial Title
Apache Configuration For Mercurial

Initial Tags
apache

Initial Language
Apache