diff options
Diffstat (limited to 'src/strongswan.conf')
-rw-r--r-- | src/strongswan.conf | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/strongswan.conf b/src/strongswan.conf new file mode 100644 index 000000000..661792a67 --- /dev/null +++ b/src/strongswan.conf @@ -0,0 +1,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 + } + } + + # ... +} |