在 Dreamweaver CS4 中配置 Subversion 版本控制

发布于 2025-01-06 11:55:40 字数 728 浏览 0 评论 0原文

我们正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山人契 2025-01-13 11:55:40

如果您可以连接到 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文