This repository has been archived by the owner on May 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php.template
38 lines (31 loc) · 1.59 KB
/
config.php.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
## REMOVE THIS
die("Not yet configured. Place see config.php");
## END OF REMOVE THIS
### For debugging:
#error_reporting(E_ALL);
###############################################################
## Define the folder, where your Subversion repositories are.
###############################################################
define ( "SVN_PARENT", "/opt/svn");
###############################################################
## A pattern to check the repository name before creating one.
## By default this allows all chars (A-z) and numbers.
###############################################################
define ( "REPOSITORY_PATTERN", '/^[A-Za-z][A-Za-z0-9]*$/');
################################################################
## Where is the path based authorization file located?
## Svnmin assumes you have one authz file for all of your
## repositories. Provide a path to it here.
################################################################
define ( "ACCESS_CONFIG", "/opt/svn/svnaccess.conf");
################################################################
## Svnmin assumes you have one htusers file for authenticating
## your repository users. If you don't use it, comment it out.
################################################################
#define ( "ACCESS_USER", "/opt/svn/svnusers.conf");
define ( 'ACCESS_PASSWORDTYPE', 'crypt'); # Options: crypt, md5
################################################################
# Just a title added to the html output.
define ("TITLE", "Svnmin");
################################################################