Some fetcher plugins (such as curl) might build upon OpenSSL to implement HTTPS fetching. As we set (and can't unset) threading callbacks in our openssl plugin, we must ensure that OpenSSL functions don't get called after openssl plugin unloading. We achieve that by loading curl and all other fetcher plugins after the base crypto plugins, including openssl.
23 lines
421 B
Plaintext
23 lines
421 B
Plaintext
# /etc/strongswan.conf - strongSwan configuration file
|
|
|
|
charon {
|
|
plugins {
|
|
sql {
|
|
database = sqlite:///etc/ipsec.d/ipsec.db
|
|
}
|
|
}
|
|
load = aes des sha1 sha2 md5 pem pkcs1 gmp random nonce x509 curl revocation hmac stroke kernel-netlink socket-default updown sqlite sql attr-sql
|
|
}
|
|
|
|
libhydra {
|
|
plugins {
|
|
attr-sql {
|
|
database = sqlite:///etc/ipsec.d/ipsec.db
|
|
}
|
|
}
|
|
}
|
|
|
|
pool {
|
|
load = sqlite
|
|
}
|