在 Dreamweaver CS4 中配置 Subversion 版本控制
我们正在 Dreamweaver CS4 中设置 Subversion 版本控制,并且希望通过 SSL 传输文件。我们让它在没有 SSL 的情况下工作。但是,当我们选择HTTPS作为协议时,它无法连接。 https://thedevserver.edu,DW连接失败。 有人让它发挥作用吗? Apache 或 Subversion 方面是否有我们遗漏的东西?
我们有一个包含以下内容的 SVN 配置包含文件:
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location /repos>
DAV svn
SVNParentPath /folder/folder1/SVN_REPOS_folder
SVNListParentPath on
SSLRequireSSL
AuthType Digest
AuthName webdav
AuthDigestDomain /repos
AuthUserFile /some/where/on/the/server
AuthDigestProvider file
Require valid-user
</Location>
我已将此文件包含到虚拟主机文件中。但是,DW 仍然无法使用 HTTPS 进行连接。
We're setting up Subversion version control in Dreamweaver CS4 and we'd like to transmit our files over SSL. We have it working without SSL. But, when we select HTTPS as the protocol, it's unable to connect. https://thedevserver.edu, DW fails to connect.
Has anyone gotten this to work? Is there something on the Apache or Subversion sides that we're missing?
We have an SVN configuration include file with the following contents:
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location /repos>
DAV svn
SVNParentPath /folder/folder1/SVN_REPOS_folder
SVNListParentPath on
SSLRequireSSL
AuthType Digest
AuthName webdav
AuthDigestDomain /repos
AuthUserFile /some/where/on/the/server
AuthDigestProvider file
Require valid-user
</Location>
I've Included this file in the virtual host file. But, still, DW can't connect using HTTPS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以连接到 http 存储库,但不能连接到 https:这显然是 Apache 的一部分 - 它必须支持用于存储库虚拟主机或服务器的安全连接。
在本例中,Subversion (mod_dav_svn) 在基础 httpd 引擎上工作
If you can connect to http repo, but can't to https: this is obviously Apache part - it must support secure connection for used for repository virtualhost or server.
Subversion (mod_dav_svn) in this case work over base httpd-engine