How do i find out which svn config is currently used on a server?
Solution 1:
I assume you're using svnserve and not access over http/apache?
For svnserve, each repository has its own conf/svnserve.conf. So if you've created a repostory with svnadmin create /var/svn/project1
, then the configuration file will be in /var/svn/project1/conf/svnserve.conf
.
If you then access the repository with the URL svn://host.example.com/var/svn/project1
, then that config file will be used, and no other. There are no system-wide configuration files for svnserve.