Subversion Repositories configs

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
# -*- text -*-
2
#
34 - 3
#  $Id: 95d9f2b98de1b33346c6129aa7e88a901248cd4d $
4 - 4
 
5
# Realm module, for proxying.
6
#
7
#  You can have multiple instances of the realm module to
8
#  support multiple realm syntaxs at the same time.  The
9
#  search order is defined by the order that the modules are listed
10
#  in the authorize and preacct sections.
11
#
12
#  Four config options:
13
#	format         -  must be "prefix" or "suffix"
14
#			  The special cases of "DEFAULT"
15
#			  and "NULL" are allowed, too.
16
#	delimiter      -  must be a single character
17
 
18
#  'realm/username'
19
#
20
#  Using this entry, IPASS users have their realm set to "IPASS".
21
realm IPASS {
22
	format = prefix
23
	delimiter = "/"
24
}
25
 
26
#  'username@realm'
27
#
28
realm suffix {
29
	format = suffix
30
	delimiter = "@"
31
}
32
 
33
#  'username%realm'
34
#
35
realm realmpercent {
36
	format = suffix
37
	delimiter = "%"
38
}
39
 
40
#
41
#  'domain\user'
42
#
43
realm ntdomain {
44
	format = prefix
45
	delimiter = "\\"
46
}