I have installed svn 1.9.4(apache subversion) in fedora 23 follow this link https://www.if-not-true-then-false.com/2010/install-svn-subversion-server-on-fedora-centos-red-hat-rhel/ After Create and configure SVN repository, Restart the service then go to browser. http://localhost/svn/repo its not prompt to ask user name and password its goes directly repo files with out username and password. These are my Configuration : /etc/httpd/conf.modules.d/10-subversion.conf LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so LoadModule dontdothat_module modules/mod_dontdothat.so
<Location /svn> DAV svn SVNParentPath /var/www/svn # Limit write permission to list of valid users. <LimitExcept GET PROPFIND OPTIONS REPORT> # Require SSL connection for password protection. # SSLRequireSSL AuthType Basic AuthName "Subversion repositories" AuthUserFile /etc/svn-auth-users Require valid-user </LimitExcept> </Location>
/var/www/svn/repo/conf/svnserve.conf [general] anon-access = none auth-access = write password-db = passwd authz-db = authz /var/www/svn/gworksrepo/conf/passwd [users] harry = harryssecret sally = sallyssecret Suggest me What's Wrong in my Configuration and how to fix this.
Last updated