summaryrefslogtreecommitdiffstats
path: root/src/tests/xlat/radiusd.conf
blob: 89e7f244bc4a63e20d07a4d5aaee3a953a7f9072 (plain)
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
#
#  Minimal radiusd.conf for testing keywords
#

raddb		= raddb

modconfdir	= ${raddb}/mods-config

correct_escapes	= true

#  Only for testing!
#  Setting this on a production system is a BAD IDEA.
security {
	allow_vulnerable_openssl = yes
}

modules {
	$INCLUDE ${raddb}/mods-enabled/always

	$INCLUDE ${raddb}/mods-enabled/pap

	$INCLUDE ${raddb}/mods-enabled/expr
}

server default {
	authorize {
		update control {
			Cleartext-Password := 'hello'
		}

		pap
	}

	authenticate {
		pap
	}
}