On Tue, Jun 10, 2008 at 3:50 PM, Holger Stratmann <tigris_at_finch.de> wrote:
>
>>> Please show us the section from your Apache-configuration where you set
>>> up
>>> Subversion.
>>> It should probably be a LOCATION-directive.
>>>
>>> You DID configure Subversion, right?
>>
>> Emphasize what you mean please. What configuration do I need to show
>> you? What was I supposed to configure for Subversion?
>
> http://svnbook.red-bean.com/nightly/en/svn.serverconfig.httpd.html
>
> Given that you know the book, I assume you've read this section?
>
> What I mean is something like
>
> <Location /repos>
> DAV svn
> SVNPath /var/svn/repository
> </Location>
>
> or
>
> <Location /svn>
> DAV svn
>
> # any "/svn/foo" URL will map to a repository /var/svn/foo
> SVNParentPath /var/svn
> </Location>
>
I see. Sorry for the confusion. My /etc/apache2/httpd.conf is
completely empty (but it does exist). The file that I was editing that
has similar settings was located in /etc/apache2/sites-available/ssl.
The contents of the file are below.
NameVirtualHost *:443
<VirtualHost *:443>
ServerAdmin webmaster_at_localhost
SSLEngine On
SSLCertificateFile /etc/ssl/private/localhost.pem
DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
SSLProtocol all
SSLCipherSuite HIGH:MEDIUM
</VirtualHost>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-06-11 02:23:21 CEST