tortoise svn giving me “Redirect cycle detected for URL 'domain/svn'”

前端 未结 8 2125
無奈伤痛
無奈伤痛 2020-12-03 10:59

I want to achieve a svn-root in /var/svn and repositories(projects) in there. I could get it to work in the browser (http://domain/url gives me \"Collection of repositories\

8条回答
  •  佛祖请我去吃肉
    2020-12-03 11:51

    Following @rdconsolo suggestion on Ubuntu 16.04, remove the Alias directive, works for me

    #Alias /svn /var/lib/svn
    
    
    DAV svn
    SVNParentPath /var/lib/svn
    SVNListParentPath On
    AuthType Basic
    AuthName "Subversion Repository"
    AuthUserFile /etc/apache2/dav_svn.passwd
    Require valid-user
    
    
    

提交回复
热议问题