SvnServeをDebianサーバーにインストールしましたが、パスワードで保護されたフォルダーを使用してVisualStudioで正常に動作します。
私はwebsvnをインストールしました、そしてなんてことだ!私のsubversionディレクトリはすべて、パスワードなしでhttp:// myserver/websvnからアクセスできます。
認証を使用するにはどうすればよいですか?
編集:詳細情報... websvnフォルダのDebianバージョン:
apache.conf
# Configuration for websvn using php4.
Alias /websvn /usr/share/websvn
<Directory /usr/share/websvn>
DirectoryIndex index.php
Options FollowSymLinks
Order allow,deny
Allow from all
<IfModule mod_php4.c>
php_flag magic_quotes_gpc Off
php_flag track_vars On
</IfModule>
</Directory>
svn_deb_conf.inc
<?php
// please edit /etc/websvn/config.php
// or use dpkg-reconfigure websvn
$config->parentPath("/var/subversion/");
$config->setEnscriptPath("/usr/bin");
$config->setSedPath("/bin");
$config->useEnscript();
?>