applicationLogin.properties 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. ############################################################################
  2. # MaxKey
  3. ############################################################################
  4. # Login configuration
  5. #enable captcha
  6. config.login.captcha=true
  7. #enable two factor,use one time password
  8. config.login.onetimepwd=true
  9. #enable social sign on
  10. config.login.socialsignon=true
  11. #Enable kerberos/SPNEGO
  12. config.login.kerberos=true
  13. #wsFederation
  14. config.login.wsfederation=false
  15. #remeberme
  16. config.login.remeberme=true
  17. #validity
  18. config.login.remeberme.validity=
  19. #default.uri
  20. #to appList page
  21. config.login.default.uri=appList
  22. config.ipaddress.whitelist=false
  23. ############################################################################
  24. # Kerberos Login configuration
  25. ############################################################################
  26. #short name of user domain must be in upper case,eg:CONNSEC
  27. config.support.kerberos.default.userdomain=CONNSEC
  28. #short name of user domain must be in upper case,eg:CONNSEC.COM
  29. config.support.kerberos.default.fulluserdomain=CONNSEC.COM
  30. #last 8Bit crypto for Kerberos web Authentication
  31. config.support.kerberos.default.crypto=846KZSzYq56M6d5o
  32. #Kerberos Authentication server RUL
  33. config.support.kerberos.default.redirecturi=http://sso.maxkey.org/kerberos/authn/
  34. ############################################################################
  35. # CAS Login configuration
  36. ############################################################################
  37. config.support.cas.login.url=http://sso.maxkey.org/cas/login
  38. #
  39. config.support.cas.login.service=http://sso.maxkey.org/maxkey/cas
  40. #
  41. config.support.cas.login.validation.url=http://sso.maxkey.org/cas
  42. ############################################################################
  43. # HTTPHEADER Login configuration
  44. ############################################################################
  45. config.support.httpheader.enable=false
  46. config.support.httpheader.headername=header-user
  47. # iv-user is for IBM Security Access Manager
  48. #config.httpheader.headername=iv-user
  49. ############################################################################
  50. # BASIC Login support configuration
  51. ############################################################################
  52. config.support.basic.enable=false
  53. #############################################################################
  54. # WsFederation Login support configuration
  55. #identifier: the identifer for the ADFS server
  56. #url: the login url for ADFS
  57. #principal: the name of the attribute/assertion returned by ADFS that contains the principal's username.
  58. #relyingParty: the identifier of the CAS Server as it has been configured in ADFS.
  59. #tolerance: (optional) the amount of drift to allow when validating the timestamp on the token. Default: 10000 (ms)
  60. #attributeMutator: (optional) a class (defined by you) that can modify the attributes/assertions returned by the ADFS server
  61. #signingCertificate: ADFS's signing certificate used to validate the token/assertions issued by ADFS.
  62. ############################################################################
  63. config.support.wsfederation.identifier=http://adfs.connsec.com/adfs/services/trust
  64. config.support.wsfederation.url=https://adfs.connsec.com/adfs/ls/
  65. config.support.wsfederation.principal=upn
  66. config.support.wsfederation.relyingParty=urn:federation:connsec
  67. config.support.wsfederation.signingCertificate=adfs-signing.crt
  68. config.support.wsfederation.tolerance=10000
  69. config.support.wsfederation.upn.suffix=connsec.com
  70. config.support.wsfederation.logoutUrl=https://adfs.connsec.com/adfs/ls/?wa=wsignout1.0
  71. #############################################################################
  72. #############################################################################
  73. config.oidc.metadata.issuer=http://${config.server.name}/maxkey
  74. config.oidc.metadata.authorizationEndpoint=http://${config.server.name}/maxkey/oauth/v20/authorize
  75. config.oidc.metadata.tokenEndpoint=http://${config.server.name}/maxkey/oauth/v20/token
  76. config.oidc.metadata.userinfoEndpoint=http://${config.server.name}/maxkey/api/connect/userinfo
  77. #############################################################################