HTTPSTimeServer.properties 1.5 KB

1234567891011121314151617181920212223242526272829
  1. # This is a sample configuration file for HTTPTimeServer
  2. logging.loggers.root.channel.class = ConsoleChannel
  3. logging.loggers.app.name = Application
  4. logging.loggers.app.channel = c1
  5. logging.formatters.f1.class = PatternFormatter
  6. logging.formatters.f1.pattern = [%p] %t
  7. logging.channels.c1.class = ConsoleChannel
  8. logging.channels.c1.formatter = f1
  9. # HTTPSTimeServer.format = %W, %e %b %y %H:%M:%S %Z
  10. # HTTPSTimeServer.port = 9980
  11. # openSSL.client.privateKeyFile = ${application.configDir}any.pem
  12. # openSSL.client.caConfig = ${application.configDir}rootcert.pem
  13. # openSSL.client.verificationMode = relaxed
  14. # openSSL.client.verificationDepth = 9
  15. # openSSL.client.loadDefaultCAFile = false
  16. # openSSL.client.cypherList = ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH
  17. # openSSL.client.privateKeyPassphraseHandler.name = KeyFileHandler
  18. # openSSL.client.privateKeyPassphraseHandler.options.password = test
  19. # openSSL.client.invalidCertificateHandler = AcceptCertificateHandler
  20. openSSL.server.privateKeyFile = ${application.configDir}any.pem
  21. openSSL.server.caConfig = ${application.configDir}rootcert.pem
  22. openSSL.server.verificationMode = none
  23. openSSL.server.verificationDepth = 9
  24. openSSL.server.loadDefaultCAFile = false
  25. openSSL.server.cypherList = ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH
  26. openSSL.server.privateKeyPassphraseHandler.name = KeyFileHandler
  27. openSSL.server.privateKeyPassphraseHandler.options.password = test
  28. openSSL.server.invalidCertificateHandler = AcceptCertificateHandler