在ubuntu服务器中设置websvn的密码?

发布于 2024-08-27 21:40:24 字数 219 浏览 8 评论 0原文

我已经在 ubuntu 服务器中使用 apt-get install websvn 安装了 websvn 。

我现在可以通过 http://url/websvn 访问 websvn。

但是,我想设置访问密码,这样只有授权的人才能访问它。

我怎样才能做到这一点?

i have installed websvn using apt-get install websvn in ubuntu server.

i can now access websvn through http://url/websvn.

however, i want to set a password to the access, so only authorized people could access it.

how could i do this?

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

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

发布评论

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

评论(3

将军与妓 2024-09-03 21:40:24

请参阅 授权浏览 Subversion 存储库 的文档

希望这会有所帮助。

Have a look at the documentation at Subversion repository browsing with authorization

Hope this helps.

破晓 2024-09-03 21:40:24

您可以将 .htaccess 文件放入 websvn 文件夹的根目录中:

http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn

You can just put in a .htaccess file in the root of the websvn folder:

http://www.duchnik.com/tutorials/vc/setting-up-and-configuring-websvn

掩耳倾听 2024-09-03 21:40:24

添加用于存储库身份验证的用户管理员。

$ sudo htpasswd -c /etc/global.htpasswd admin

打开 dav_svn .conf 文件。

$ sudo nano /etc/apache2/mods-enabled/dav_svn.conf

添加以下行。

<Location /svn>
DAV svn
SVNParentPath /var/lib/svn
</Location>
<Location /svn/RepoName>
 AuthType Basic
 AuthName \"RepoName Subversion Repository\"
 AuthUserFile /etc/global.htpasswd
 Require user admin 
</Location>

请设置以上正确的SVNParentPath
确保 apache2-utils 已安装。

$ sudo apt-get install -y apache2-utils
$ sudo service apache2 restart

Add User admin for repository authentication.

$ sudo htpasswd -c /etc/global.htpasswd admin

Open the dav_svn.conf file.

$ sudo nano /etc/apache2/mods-enabled/dav_svn.conf

Add the below line.

<Location /svn>
DAV svn
SVNParentPath /var/lib/svn
</Location>
<Location /svn/RepoName>
 AuthType Basic
 AuthName \"RepoName Subversion Repository\"
 AuthUserFile /etc/global.htpasswd
 Require user admin 
</Location>

Please set the above correct SVNParentPath.
Make sure apache2-utils is installed.

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