Guest User

Untitled

a guest
Mar 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. # OpenSSL configuration for CRL generation
  2. #
  3. ####################################################################
  4. [ ca ]
  5. default_ca = CA_default # The default ca section
  6.  
  7. ####################################################################
  8. [ CA_default ]
  9. database = /config/auth/index.txt
  10. crlnumber = /config/auth/crl_number
  11.  
  12. default_days = 365 # how long to certify for
  13. default_crl_days= 30 # how long before next CRL
  14. default_md = default # use public key default MD
  15. preserve = no # keep passed DN ordering
  16.  
  17. ####################################################################
  18. [ crl_ext ]
  19. # CRL extensions.
  20. # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
  21. # issuerAltName=issuer:copy
  22. authorityKeyIdentifier=keyid:always,issuer:always
Add Comment
Please, Sign In to add comment