[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Subversion at Debian

From: solo turn <soloturn99_at_yahoo.com>
Date: 2003-11-11 11:26:21 CET

you have to decide between two modes of configuratin in /etc/apache2:
1. use a "main configuration"
    you edit the main configuration files httpd.conf, and mods-enabled/*
2. use a "site configuration"
    you edit site configuration : sites-enabled, and mods-enabled

site configuration seems to be more expandable, and therefor we used that one:

*. make necessary modules available (should be fixed in next version ...):
   a2enmod dav_fs
   the others should be already there:
   a2enmod dav
   a2enmod dav_svn

*. enable default configuration, if not yet done:
   (there should be a command later, but not yet available)
   cd /etc/apache2/sites-enabled
   ln -s ../sites-available/default .

*. uncomment things of default configuration, which prevent this:
   apache2.conf, comment:
        #NameVirtualHost *
   ports.conf, comment:
        #Listen 80

*. set up "default" site, sites-enabled/default:
   insert, or change it to something like:
        Listen 80
        <VirtualHost _default_:80>
        # things already there
        # ...

        # add path for svn repository
        # could be set in mods-available/dav_svn.conf too
        <IfModule mod_dav_svn.c>
        <Location /svn>
          DAV svn
          SVNParentPath /var/lib/svn
        </Location>
        </IfModule>
        </VirtualHost>

my main problem with debian configuration is, that up to now i don't see how this "sites
available" concept will match the "mods available" concept, especially if it concerns
configuration options in mods-enabled/*.conf, and sites-enabled/default.

--- Frans Thamura <java@intercitra.com> wrote:
> I have success download subversion for debian.
>
> but how to setup the apache2??
>
> can anyone give me the step by step instrauction
>
>
> Regards,
>
> Frans Thamura <frans@intercitra.com>
> Intercitra Innovation Center
> +62 855 7888 699
>
> We help you manage and control.
>
> ----------
> Tertarik dengan Java Open Source Integration discussion?? bergabung ke JUG Indonesia mailing
> list, untuk subscribe email aja ke jug-indonesia-subscribe@yahoogroups.com
>
> Website: http://jug-indonesia.dev.java.net
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Nov 11 11:27:03 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.