Introduction

server_cert_conf.data records the config for server certificate and private key

Configuration

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)

Example

  1. {
  2. "Version": "20190101000000",
  3. "Config": {
  4. "Default": "example.org",
  5. "CertConf": {
  6. "example.org": {
  7. "ServerCertFile": "../conf/tls_conf/certs/server.crt",
  8. "ServerKeyFile" : "../conf/tls_conf/certs/server.key"
  9. }
  10. }
  11. }
  12. }