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

Re: error 'svndiff data has invalid header'

From: Сергій Котенко <kotenko_at_softline.kiev.ua>
Date: 2005-11-21 10:44:42 CET

середа, 16-лис-2005 16:11, Mark Shead Ви написали:
> You might try posting the actual lines of your SVN configuration in Apache
> so we can see it. I seem to remember running into problems getting reverse
> proxies to work correctly. We got things to work, but setting our firewall
> to use NAT to point to the SVN server and only opened the port for SSL.

These are adjustments for reverse proxy on apache vhosts
<VirtualHost *:443>

# General setup for the virtual host
    ServerName subversion.softline.kiev.ua
    ServerAlias subversion.* svn.*
    ServerAdmin dsi@softline.kiev.ua

    AllowCONNECT 443
    ErrorLog /var/log/apache2/ssl_subversion_error_log
    CustomLog /var/log/apache2/ssl_subversion_log combined

    SSLEngine on
    SSLProxyEngine on
    SSLProtocol +all
    SSLCipherSuite HIGH:MEDIUM

    SSLCertificateFile /etc/apache2/ssl/server.pem
    SSLCertificateKeyFile /etc/apache2/ssl/server.pem

    <Files ~ "\.(cgi|shtml|phtml|php3?)$">
        SSLOptions +StdEnvVars
    </Files>
    <Location "/svn">
            ProxyPass https://192.168.2.233/svn
            ProxyPassReverse https://192.168.2.233/svn
    </Location>
</VirtualHost>

These are adjustments for a "real" server subversion

<VirtualHost *:443>

ServerName subversion.softline.kiev.ua
ServerAlias subversion.* svn.*
ServerAdmin dsi@softline.kiev.ua

    ErrorLog /var/log/apache2/ssl_svn_error_log
    <IfModule mod_log_config.c>
        #TransferLog /var/log/apache2/ssl_svn_access_log
        CustomLog /var/log/apache2/ssl_svn_access_log combined
    </IfModule>

    # SSL Engine Switch:
    # Enable/Disable SSL for this virtual host.

    SSLEngine on

    #SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:
+eNULL
    SSLCipherSuite ALL:+SSLv2:+SSLv3:+EXP:+eNULL
    SSLCertificateFile conf/ssl/server.pem

    SSLCertificateKeyFile conf/ssl/server.pem

    <IfModule mod_setenvif.c>

    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown \
        downgrade-1.0 force-response-1.0

    </IfModule>

    <IfModule mod_log_config.c>
        CustomLog /var/log/apache2/ssl_request_log \
                  "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
    </IfModule>

    <IfModule mod_rewrite.c>
                  RewriteEngine On
                  RewriteOptions inherit
    </IfModule>

    <Location /svn>
            DAV svn
            DavMinTimeout 6000
                Options Indexes FollowSymLinks
                SVNParentPath /repos
                AuthzSVNAccessFile /repos/svn.access.conf
                AuthName "Softline subversion repository"
                AuthType Basic
                AuthAuthoritative Off
                Bind_Tries 5
                LDAP_Debug Off
                LDAP_Server 192.168.2.10
                LDAP_Port 389
                Base_DN "OU=Kiev,DC=softline,DC=main"
                Bind_DN "CN=ldapbind,OU=Service,OU=Kiev,DC=softline,DC=main"
                Bind_Pass "qwerty"
                UID_Attr sAMAccountName
                Require valid-user
    </Location>

</VirtualHost>

What is, the given problem is observed only at one removed clients, and it has
begun without any visible reason. Version TortoiseSVN at them-

TortoiseSVN 1.2.6, Build 4786 - 32 Bit
Subversion 1.2.3,
apr 0.9.6
apr-iconv 0.9.5
apr-utils 0.9.6
berkeley db 4.3.28
neon 0.24.7
OpenSSL 0.9.8a 11 Oct 2005
zlib 1.2.3  

Prompt as it is possible to solve this a problem.
Thankful in advance for the answer.

-- 
З повагою
Сергій Котенко
системний адміністратор
компанія SoftLine
Департамент Комплексних Рішень
кімната 412
тел.: внутрішній - 200
моб.: 8-050-4445334
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Nov 21 10:48:58 2005

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

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