You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Frans Thamura <ja...@intercitra.com> on 2003/11/11 09:19:05 UTC

Subversion at Debian

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 <fr...@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

Re: Subversion at Debian

Posted by solo turn <so...@yahoo.com>.
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 <ja...@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 <fr...@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