server_cert_conf.data records the config for server certificate and private key
Config Item | Type | Description |
---|---|---|
Version | String | Time of generating config file |
Default | String | Name of default cert. - default cert must be configed |
CertConf | Struct | Cert list - cert name can not be "BFE_DEFAULT_CERT" - ServerCertFile: path of server certificate - ServerKeyFile: path of private key - OcspResponseFile: path of OCSP Stple (oprional) |
{
"Version": "20190101000000",
"Config": {
"Default": "example.org",
"CertConf": {
"example.org": {
"ServerCertFile": "../conf/tls_conf/certs/server.crt",
"ServerKeyFile" : "../conf/tls_conf/certs/server.key"
}
}
}
}