TestSuitemt.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <privateKeyPassphraseHandler>
  30. <name>KeyFileHandler</name>
  31. <options>
  32. <password>secret</password>
  33. </options>
  34. </privateKeyPassphraseHandler>
  35. <invalidCertificateHandler>
  36. <name>AcceptCertificateHandler</name>
  37. <options>
  38. </options>
  39. </invalidCertificateHandler>
  40. </client>
  41. </openSSL>
  42. <testsuite>
  43. <proxy>
  44. <host>proxy.aon.at</host>
  45. <port>8080</port>
  46. </proxy>
  47. </testsuite>
  48. </AppConfig>