testrunner.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <AppConfig>
  2. <openSSL>
  3. <server>
  4. <privateKeyFile>${application.configDir}any.pem</privateKeyFile>
  5. <caConfig>${application.configDir}rootcert.pem</caConfig>
  6. <verificationMode>none</verificationMode>
  7. <verificationDepth>9</verificationDepth>
  8. <loadDefaultCAFile>true</loadDefaultCAFile>
  9. <cypherList>ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH</cypherList>
  10. <privateKeyPassphraseHandler>
  11. <name>KeyFileHandler</name>
  12. <options>
  13. <password>secret</password>
  14. </options>
  15. </privateKeyPassphraseHandler>
  16. <invalidCertificateHandler>
  17. <name>AcceptCertificateHandler</name>
  18. <options>
  19. </options>
  20. </invalidCertificateHandler>
  21. </server>
  22. <client>
  23. <privateKeyFile>${application.configDir}any.pem</privateKeyFile>
  24. <caConfig>${application.configDir}rootcert.pem</caConfig>
  25. <verificationMode>relaxed</verificationMode>
  26. <verificationDepth>9</verificationDepth>
  27. <loadDefaultCAFile>true</loadDefaultCAFile>
  28. <cypherList>ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH</cypherList>
  29. <dhParamsFile>${application.configDir}dhparams.pem</dhParamsFile>
  30. <privateKeyPassphraseHandler>
  31. <name>KeyFileHandler</name>
  32. <options>
  33. <password>secret</password>
  34. </options>
  35. </privateKeyPassphraseHandler>
  36. <invalidCertificateHandler>
  37. <name>AcceptCertificateHandler</name>
  38. <options>
  39. </options>
  40. </invalidCertificateHandler>
  41. </client>
  42. </openSSL>
  43. <testsuite>
  44. <proxy>
  45. <host>proxy.aon.at</host>
  46. <port>8080</port>
  47. </proxy>
  48. </testsuite>
  49. </AppConfig>