I have a subversion server running with apache. It authenticates users using LDAP in apache configuration and uses SVN authorizations to limit user access to certain repositories. This works perfectly.
Apache
DAV svn
SVNParentPath /srv/svn
SVNListParentPath Off
SVNPathAuthz Off
AuthType Basic
AuthName "Subversion Repository"
AuthBasicP...
I'm setting up an Apache+SVN server for work. I can checkout a repository, but when I run the svn list command I get the following error "OPTIONS of 'https://server': 200 OK (https://server)"
Here is my subversion.conf
<Location /svn/>
DAV svn
SVNParentPath /svn/repos/
# Require SSL connection for password protection.
SSL...
What is the correct syntax?
[auto-props]
*.* = svn:ignore=bin
obj
or
[auto-props]
*.* = svn:ignore=bin;obj
or none? Is it possible to write multi-line properties in the config file?
...