Cannot connect to SVN+Apache server except from localhost

------=_Part_3440_31749533.1172051233071
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hello,

I've tried to setup a Subversion + Apache 2.2 server. The following query
works:
svn list https://localhost/repository-name

When I try the corresponding query - - from a different host, the connection
just hangs (no question of user name/password, even). What follows is what
I've found out about the situation so far.

# netstat -an | egrep "80|443"
tcp 0 0 :::80 :::* LISTEN
tcp 0 0 :::443 :::* LISTEN

# tcpdump port 443
09:16:07.231009 IP removed.41096 > removed.https: S 1642178740:1642178740(0)
win 65535 <mss 1412,nop,wscale 0,nop,nop,timestamp 2415058 0>

Looking through the Apache settings, I can't find that localhost is singled
out in any way.

httpd.conf:
....
<Directory />
Options None
AllowOverride None
Order deny,allow
Deny from all
</Directory>
....

vhost-ssl.conf:
<VirtualHost _default_:443>
DocumentRoot "/srv/svn"
ServerName removed (ip address)
ErrorLog /var/log/apache2/error_log
TransferLog /var/log/apache2/access_log
<Location />
DAV svn
SVNParentPath /srv/svn/repos
Options FollowSymLinks
order allow,deny
allow from all
AuthType Basic
AuthName "Subversion Repository"
Require valid-user
AuthUserFile /srv/svn/user_access/repository_passwdfile
</Location>
....

openssl s_client -connect localhost:443 -state -debug:
....
depth=0 /C=removed/CN=removed
verify error:num=18:self signed certificate
verify return:1
depth=0 /C= removed/CN=removed
verify return:1
SSL_connect:SSLv3 read server certificate A
....
No client certificate CA names sent
....
SSL-Session:
....
Verify return code: 18 (self signed certificate)

Any help would be appreciated!

--
Victor Engmark
Quid quid latine dictum sit, altum viditar - What is said in Latin, sounds
profound

------=_Part_3440_31749533.1172051233071
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hello,<br><br>I've tried to setup a Subversion + Apache 2.2 server. The following query works:<br>svn list <a href="https://localhost/repository-name" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">


https://localhost/repository-name</a><br><br>When I try the corresponding query - - from a different host, the connection just hangs (no question of user name/password, even). What follows is what I've found out about the situation so far.
<br clear="all"><br># netstat -an | egrep "80|443"<br>tcp        0      0 :::80                   :::*                    LISTEN
<br>tcp        0      0 :::443                  :::*                    LISTEN<br><br># tcpdump port 443<br>09:16:07.231009 IP <span style="font-style: italic;">removed</span>.41096 > <span style="font-style: italic;">


removed</span>.https: S 1642178740:1642178740(0) win 65535 <mss 1412,nop,wscale 0,nop,nop,timestamp 2415058 0><br><br>Looking through the Apache settings, I can't find that localhost is singled out in any way.<br>


<br>httpd.conf:<br>...<br><Directory /><br>    Options None<br>    AllowOverride None<br>    Order deny,allow<br>    Deny from all<br></Directory><br>...<br><br>vhost-ssl.conf:<br><VirtualHost _default_:443>
<br>        DocumentRoot "/srv/svn"<br>        ServerName <span style="font-style: italic;">removed (ip address)</span><br>        ErrorLog /var/log/apache2/error_log<br>        TransferLog /var/log/apache2/access_log
<br>        <Location /><br>         DAV svn<br>         SVNParentPath /srv/svn/repos<br>         Options FollowSymLinks<br>         order allow,deny<br>         allow from all<br>         AuthType Basic<br>         AuthName "Subversion Repository"
<br>         Require valid-user<br>         AuthUserFile /srv/svn/user_access/repository_passwdfile<br><div>        </Location><br>...<br><br><span>openssl s_client -connect localhost:443 -state -debug:<br>
....<br>depth=0 /C=</span><span><span style="font-style: italic;">removed</span></span><span>/CN=<span style="font-style: italic;">removed</span><br>verify error:num=18:self signed certificate<br>verify return:1<br>depth=0 /C=
</span><span><span style="font-style: italic;">removed</span></span><span>/CN=</span><span><span style="font-style: italic;">removed</span></span><br><span>verify return:1<br>SSL_connect:SSLv3 read server certificate A<br>

....<br>No client certificate CA names sent<br>...<br>SSL-Session:
<br>...<br>    Verify return code: 18 (self signed certificate)<br><br>Any help would be appreciated!<br></span><br>-- <br>Victor Engmark<br>Quid quid latine dictum sit, altum viditar - What is said in Latin, sounds profound
</div>

------=_Part_3440_31749533.1172051233071--
Victor Engmark [ Mi, 21 Februar 2007 10:47 ] [ ID #1635463 ]
Webserver » gmane.comp.apache.mod-ssl.user » Cannot connect to SVN+Apache server except from localhost

Vorheriges Thema: httpd signal 11, Segmentation fault and mod_ssl
Nächstes Thema: SSLEngine optional and SSLRequireSSL ?