applicationLogin.properties 4.5 KB

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