subversion repository with Apache+OpneSSL - 資安

Table of Contents


Hi,
我試著安裝subversion repository,但是卻遇到一些問題

目前我的server會允許 有SSL加密的連線
但是我試著輸入帳號密碼都沒有用 server還是不斷的要求我輸入帳號跟密碼
不知道有沒有高手可以指點下,謝謝

以下是一些設定值

Here are my setting

/**httpd.conf**/
<Location /repos>
DAV svn
SVNParentPath "E:/SVNRepos"

# how to authenticate a user
AuthType Basic
AuthName "Subversion repository"
#SSLCertificateFile conf/ssl.crt/server.crt
#SSLCertificateKeyFile conf/ssl.key/server.key


AuthUserFile "E:/SVNRepos/passwd.ini"

# only authenticated users may access the repository
Require valid-user

# For any operations other than these, require an authenticated user.
#<LimitExcept GET PROPFIND OPTIONS REPORT>
# Require valid-user
#</LimitExcept>

# our access control policy
AuthzSVNAccessFile "E:/SVNRepos/authz.ini"

</Location>
/**httpd.conf**/

//** passwd.ini**//
[test]:$apr1$N6......$OFzLW8Rgj21bmzuJyPmLZ/
[rusk]:1234
//** passwd.ini**//

//** authz.ini**//
[groups]
pm = rusk
developers = rusk,test
everyone = *


[/]
* =


[project1:/]
@pm=rw
@developers=r

//** authz.ini**//

Very appreciate if anyone can give me some hint about what's going wrong?


--

All Comments