accept.cnf 486 B

1234567891011121314151617181920212223
  1. # Example configuration file
  2. # Comment out the next line to ignore configuration errors
  3. config_diagnostics = 1
  4. # Port to listen on
  5. Port = 4433
  6. # Disable TLS v1.2 for test.
  7. # Protocol = ALL, -TLSv1.2
  8. # Only support 3 curves
  9. Curves = P-521:P-384:P-256
  10. # Restricted signature algorithms
  11. SignatureAlgorithms = RSA+SHA512:ECDSA+SHA512
  12. Certificate=server.pem
  13. PrivateKey=server.pem
  14. ChainCAFile=root.pem
  15. VerifyCAFile=root.pem
  16. # Request certificate
  17. VerifyMode=Request
  18. ClientCAFile=root.pem