如何在我的电脑上托管 svn 服务器?

发布于 2024-10-18 11:09:30 字数 799 浏览 6 评论 0原文

我有 VisualSVN 服务器,我想在我的计算机上创建一个面向互联网的存储库,但我似乎无法做到这一点。我创建了存储库,禁用了 https,并且我尝试通过以下方式访问服务器:

svn://xxx.xx.xxx.xxx:8080/svn/repo/trunk 或者 http://xxx.xx.xxx.xxx:8080/svn/repo/trunk

但每种情况都会给我一个错误。

以svn协议为例:

无法连接到主机 'xxx.xx.xxx.xxx':无法连接 因为目标机器 主动拒绝。

在 http 的情况下:

选项 'http://xxx.xx.xxx.xxx:8080/svn/repo': 无法连接到服务器 (http://xxx.xx.xxx.xxx:8080)

我错过了什么?< br> 我是否需要配置 Apache 服务器或类似的东西才能将服务器公开?

更新:我在 Windows 7 上运行,Windows 防火墙被禁用,没有安装其他防火墙

I have VisualSVN Server and I want to create an internet facing repository on my computer but I can't seem to get it right. I created the repository, disabled https, and I'm trying to access the server through:

svn://xxx.xx.xxx.xxx:8080/svn/repo/trunk
or
http://xxx.xx.xxx.xxx:8080/svn/repo/trunk

but each case gives me an error.

In the case of svn protocol:

Can't connect to host
'xxx.xx.xxx.xxx': No connection could
be made because the target machine
actively refused it.

And in the http case:

OPTIONS of
'http://xxx.xx.xxx.xxx:8080/svn/repo':
could not connect to server
(http://xxx.xx.xxx.xxx:8080)

What am I missing?
Do I need to configure an Apache server or something like that in order to be able to make the server public?

Update: I'm running on Windows 7, windows firewall is disabled, no other firewall is installed

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

半葬歌 2024-10-25 11:09:30

最简单的方法是配置 Apache 以提供 SVN 存储库。配置示例:

LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location /svn>
  DAV svn
  SVNPath /usr/local/subversion/repos
  <LimitExcept GET PROPFIND OPTIONS REPORT>
    AuthType Basic
    AuthName "Subversion Repository"
    AuthUserFile /etc/svn-auth-file
    Require valid-user
  </LimitExcept>
</Location>

The easiest way to do this is to configure Apache to serve out the SVN repository. Example configuration:

LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location /svn>
  DAV svn
  SVNPath /usr/local/subversion/repos
  <LimitExcept GET PROPFIND OPTIONS REPORT>
    AuthType Basic
    AuthName "Subversion Repository"
    AuthUserFile /etc/svn-auth-file
    Require valid-user
  </LimitExcept>
</Location>
美人骨 2024-10-25 11:09:30

就我个人而言,我不会在你自己的服务器上托管你自己的服务器,仅根据我自己 30 年的经验,经过多年的尝试,在防火墙入侵和不断清理漏洞后,我的机器不断遭到黑客攻击,并且编写和运行大量的清理脚本,不再值得花费时间和精力。只需在网上找到一个免费的主机并使用即可。相信我,您会得到更多这样编写的代码。

personally i wouldn't host your own on your own server , just from my own 30 Years experience after many years of trying to do just that with the barrage of constantly having my machines hacked all the time after Firewall intrusions and cleaning up holes constantly and writing and running tons of Cleanup scripts, just not worth the time and effort anymore. just find a free host on the net and go with that. trust me you'll get more code written that way .

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