ssl svn用户login问题

我有一个颠覆服务器,在Apache(在WindowsXP),可以通过networking使用http访问。 我想用ssl / https来访问它。 我还没有搞乱http – > https,并可以login使用http://罚款。 但是,如果我使用https://,login失败,我得到一个“需要validation!” 401错误消息。

我想这是我的服务器(?)的configuration问题,但还没有find解决scheme。

有任何想法吗?

编辑我可以连接并通过https:// localhost确定,但不能通过IP地址通过networkinglogin。 我在创build证书时(通过makecert)放入了IP地址。

conf文件片段(如果需要,我可以添加更多):

的httpd-SSL:

`VirtualHost _default_:443> # General setup for the virtual host t DocumentRoot "C:/xampp/htdocs" ServerName localhost:443 ServerAdmin webmaster@localhost ErrorLog "logs/error.log" <IfModule log_config_module> CustomLog "logs/access.log" combined </IfModule> SSLEngine on SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL #SSLCertificateFile "conf/ssl.crt/server-dsa.crt" SSLCertificateFile "conf/ssl.crt/server.crt"` 

httpd.conf摘录:

 <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin SSLSessionCache "shmcb:logs/ssl.scache(512000)" SSLSessionCacheTimeout 300 </IfModule> <Location /svn> DAV svn SVNListParentPath on SVNParentPath C:\SVN #SVNIndexXSLT "/svnindex.xsl" AuthType Basic AuthName "Subversion repositories" AuthUserFile passwd #AuthzSVNAccessFile svnaccessfile Require valid-user </Location> 

尝试在ServerName下添加:

 ServerAlias 127.0.0.1:443