This file is indexed.

/etc/freeradius/modules/redis is in freeradius 2.1.12+dfsg-1.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# -*- text -*-
#
#  $Id$

#
#  Configuration file for the "redis" module.  This module does nothing
#  Other than provide connections to a redis database, and a %{redis: ...}
#  expansion.
#
redis {
	#  Host where the redis server is located.
	#  We recommend using ONLY 127.0.0.1 !
	hostname = 127.0.0.1

	#  The default port.
	port = 6379
	
	#  The password used to authenticate to the server.
	#  We recommend using a strong password.
#	password = thisisreallysecretandhardtoguess

	# The number of connections to open to the database.
	num_connections = 20

	# If a connection fails, retry after this time.
	connect_failure_retry_delay = 60

	#  Set the maximum lifetime for one connection.
	#  Use 0 for "lives forever"
	lifetime = 86400

	#  Set the maximum queries used for one connection.
	#  Use 0 for "no limit"
	max_queries = 0
}