mirror of
https://github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin.git
synced 2026-07-21 19:48:59 +02:00
* ✨ Add support for insecure tls connections to LAPI * 📝 Add documentation for the TLS insecure parameter * 🚧 Add tls authority certificate and checks for params * 📝 Add example for tls communication in readme and folder * 📝 Update documentation and example for tls * 🚨 Fix easy lint errors * 🦺 logic to fetch certificates * 🚨 Fix lint on readme * ♻️ Refactor validate to fix lint and clean * 🚧 Add doc, cert gen for crowdsec example * 🚧 Progress on setting up Crowdsec with tls * 🚧 Update certs validation for example * ♻️ Add load variable from file or value and get client cert * ♻️ Refactor getting variables * 🚨 Fix lint, no new line on new files * 🐛 Fix bug on condition check lapi key cert * ♻️ Update after review * ♻️ Update after review * 🍱 fix mathieu code * ♻️ Refactor logic of loading tls certificates * 🍱 clean code * 🍱 last fix * 🍱 fix lint * ♻️ Add documentation in readme, fix lint, remove unfinished tests * 🐛 Fix conditions logics * 🚨 Fix Lint * ♻️ simplify code on getVariable Co-authored-by: Max Lerebourg <maxlerebourg@gmail.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"signing": {
|
|
"default": {
|
|
"expiry": "8760h"
|
|
},
|
|
"profiles": {
|
|
"intermediate_ca": {
|
|
"usages": [
|
|
"signing",
|
|
"digital signature",
|
|
"key encipherment",
|
|
"cert sign",
|
|
"crl sign",
|
|
"server auth",
|
|
"client auth"
|
|
],
|
|
"expiry": "8760h",
|
|
"ca_constraint": {
|
|
"is_ca": true,
|
|
"max_path_len": 0,
|
|
"max_path_len_zero": true
|
|
}
|
|
},
|
|
"server": {
|
|
"usages": [
|
|
"signing",
|
|
"digital signing",
|
|
"key encipherment",
|
|
"server auth"
|
|
],
|
|
"expiry": "8760h"
|
|
},
|
|
"client": {
|
|
"usages": [
|
|
"signing",
|
|
"digital signature",
|
|
"key encipherment",
|
|
"client auth"
|
|
],
|
|
"expiry": "8760h"
|
|
}
|
|
}
|
|
}
|
|
}
|