summaryrefslogtreecommitdiff
path: root/src/strongswan.conf
blob: 661792a678afd13123bf278e411961f904190611 (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
# strongswan.conf - strongSwan configuration file

charon {

	# number of worker threads in charon
	threads = 16
	
	# plugins to load in charon
	# load = aes des gmp hmac md5 random sha1 sha2 pubkey xcbc x509 stroke
	
	plugins {
	
		sql {
		
			# loglevel to log into sql database
			loglevel = -1
			
			# URI to the database
			# database = sqlite:///path/to/file.db
			# database = mysql://user:password@localhost/database
		}
	}
	
	# ...
}