Cannot commit jar file to svn after merge: 502 'Bad Gateway'

后端 未结 4 1059
没有蜡笔的小新
没有蜡笔的小新 2021-01-22 01:42

We use visualsvn with tortoiseSVN on the client for version control of the binaries. That is, when we want to test a project, the test branch is merged with the build branch. Th

4条回答
  •  悲哀的现实
    2021-01-22 02:44

    I solved this issue. The problem I saw is the branch called for a SVN COPY to happen and this is done in HTTP and breaks under HTTPS. So I created a localhost:9005 virtual host running DAV, added the localhost:9005 listner, and changed my SSL virtual host to proxy to the localhost:9005.

    ... SSLCertificateFile /etc/ssl/certs/server.cer SSLCertificateKeyFile /etc/ssl/certs/server.key SSLCertificateChainFile /etc/ssl/certs/domain.cer
    ProxyRequests           On
    ProxyPreserveHost       On
    
    ProxyPass           /svn    http://localhost:9005/svn
    ProxyPassReverse    /svn    http://localhost:9005/svn
    

提交回复
热议问题