HTTPSTimeServer.properties 751 B

12345678910111213141516171819
  1. # This is a sample configuration file for HTTPSTimeServer
  2. HTTPSTimeServer.format = %W, %e %b %y %H:%M:%S %Z
  3. HTTPSTimeServer.port = 9443
  4. schannel.server.certificatePath = ${application.configDir}any.pfx
  5. schannel.server.privateKeyPassphraseHandler.name = KeyFileHandler
  6. schannel.server.privateKeyPassphraseHandler.options.password = secret
  7. schannel.server.verificationMode = none
  8. schannel.server.useMachineStore = false
  9. schannel.server.useStrongCrypto = true
  10. logging.loggers.root.channel.class = ConsoleChannel
  11. logging.loggers.app.name = Application
  12. logging.loggers.app.channel = c1
  13. logging.formatters.f1.class = PatternFormatter
  14. logging.formatters.f1.pattern = [%p] %t
  15. logging.channels.c1.class = ConsoleChannel
  16. logging.channels.c1.formatter = f1