Skip to content

Instantly share code, notes, and snippets.

@devth
Created January 14, 2010 21:44
Show Gist options
  • Save devth/277539 to your computer and use it in GitHub Desktop.
Save devth/277539 to your computer and use it in GitHub Desktop.
# Simple SVN apache config by devth.com
# Place in /etc/apache2/sites on OS X Server
# Adding or removing permissions for a user is as simple as adding or
# removing them from "svn_users" group in Workgroup Manager
<Location /svn>
DAV svn
SVNParentPath /Library/Subversion/Repositories
<Limit GET HEAD OPTIONS CONNECT POST PROPFIND PUT DELETE PROPATCH MKCOL COPY MOVE LOCK UNLOCK>
Require group svn_users
</Limit>
AuthType Basic
AuthName "svn"
</Location>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment