Guest User

Untitled

a guest
Feb 14th, 2018
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 4.55 KB | None | 0 0
  1. # SSL cert to sign the SAML messages
  2. #sso.keystore.file=file:/app/Tomcat-8.0.45/conf/imckeystore/saml/lvdclocal-sso.jks
  3. sso.keystore.file=file:/Users/psh104/IdeaProjects/lvm_portal/cms/conf/imckeystore/saml/lvdclocal-sso.jks
  4.  
  5. # Alias of the certificate
  6. sso.keystore.alias=lvdclocalsso
  7. # Passphrase of the keystore
  8. sso.keystore.pass=lvdclocalsso
  9.  
  10. # Resource URL for the idp metadata
  11. sso.idp.metadata.url=https://dev-idm-1a-1.imcinternal.com/idp/shibboleth
  12. #sso.idp.metadata.url=https://dev-gluutest.imcinternal.com/idp/shibboleth
  13.  
  14.  
  15. # This is default value. It should be updated only if the context path changes from default.
  16. #scheme://server:port/contextPath/saml/login?idp=mySelectedIDP.
  17. sso.idp.loginUrl=/saml/login
  18.  
  19. # Entity ID of the SP
  20. sso.service.provider.entity.id=com:imc:eplocal:sp
  21.  
  22. #Base URL of SP. Needs to be a URL with protocol, server, port and context path.
  23. sso.service.provider.entity.base.url=https://dev-portal.imcinternal.com/site
  24.  
  25. # Defines the name identifier formats supported by the identity provider.
  26. # Name identifiers are a way for providers to communicate with each other regarding a user.
  27. sso.service.provider.entity.name.id=urn:oasis:names:tc:SAML:2.0:nameid-format:imcaccountid
  28.  
  29. #Context provider parameters which overrides request attributes with values of the load-balancer or reverse-proxy in front
  30. #of the local application. The settings help to provide correct redirect URls and verify destination URLs during
  31. #SAML processing.
  32. sso.service.load.balancer.scheme=https
  33. sso.service.load.balancer.host=dev-portal.imcinternal.com
  34. sso.service.load.balancer.exhibitor.portal.host=dev-portal.imcinternal.com
  35. sso.service.load.balancer.admin.portal.host=dev-admin.imcinternal.com
  36. sso.service.load.balancer.context.path=/site
  37.  
  38. #static sp metadata configuration
  39. sso.sp.metadata.exhibitor.portal=classpath:idmconf/default/exhibitor-portal.xml
  40. sso.sp.metadata.admin.portal=classpath:idmconf/default/admin-portal.xml
  41. sso.sp.metadata.exhibitor.portal.path=/idmconf/default/exhibitor-portal.xml
  42. sso.sp.metadata.admin.portal.path=/idmconf/default/admin-portal.xml
  43.  
  44. #The HTTP parameter to look for the username when performing authentication. Default is "username".
  45. lvm.login.field.username=email
  46. #The HTTP parameter to look for the password when performing authentication. Default is "password".
  47. lvm.login.field.passwordname=password
  48. # path where login page in Hippo will be available for LVM
  49. lvm.login.page.url=/lasvegasmarket/login
  50. lvm.logout.success.redirect.url=/lasvegasmarket/homepage
  51. lvm.rememberme.token.timeout=15552000
  52. lvm.authfail=/lasvegasmarket/403
  53. lvm.authenticationfail.url=/lasvegasmarket/login?error=
  54.  
  55. ## -----------------
  56. sso.site.config=classpath:idmconf/site-config-default.json
  57.  
  58. #endpoint for getting user for exhibitor portal
  59. sso.idm.api.by.id=http://localhost:8085/imc-api-idm/api/v1/accounts/{id}
  60.  
  61. #endpoint for getting user for LVM website
  62. sso.idm.api.by.email=http://localhost:8085/imc-api-idm/api/v1/accounts/{email}/account
  63.  
  64. sso.hippo.scan.package=com.imc.idm.security.core.userdetails
  65. ## =========== RDS schema config where spring session related tables are present ========================
  66. idm.spring.session.database.url=jdbc:mysql://172.31.188.35:3306/idm?useSSL=false
  67. idm.spring.session.datasource.driverClassName=com.mysql.jdbc.Driver
  68. idm.spring.session.datasource.username=idmapp
  69. idm.spring.session.datasource.password=idmdev07
  70.  
  71. # This is authorization fail page
  72. sso.idp.authfail=/exhibitorportal/403
  73. sso.authfail.lease.url=/exhibitorportal/lease-expired
  74. sso.authenticationfail.url=/exhibitorportal/login?error=
  75.  
  76. # This is account verification email url
  77. lvm.accountnotverified.url=/lasvegasmarket/account-not-verified?email=
  78. sso.accountnotverified.url=/exhibitorportal/account-not-verified?email=
  79.  
  80.  
  81. sso.idp.admin.authfail=/adminportal/403
  82. sso.admin.authfail.lease.url=/adminportal/lease-expired
  83. sso.admin.authenticationfail.url=/adminportal/login?error=
  84. sso.admin.accountnotverified.url=/adminportal/account-not-verified?email=
  85.  
  86. sso.portal.dashboard.url=/exhibitorportal/dashboard
  87. sso.admin.dashboard.url=/adminportal/dashboard
  88.  
  89. sso.idp.logout.url=https://gluu-test.imc.com/idp/logout.jsp
  90. sso.enterworks.logout.url=https://ewrazorfish/webcm/logout.do
  91.  
  92. zendesk.sub.domain=imcentershelp
  93. zendesk.jwt.shared.secret=WFkv74ewAERZvaRjXvSbM33cqxVcJPgBu9zmhVuaUCw5VpMc
  94. zendesk.jwt.expiration=20
  95. zendesk.domain.protocol=https://
  96.  
  97. hippo.cms.jwt.shared.secret=4G7Q+0ZYHalf6e7rHoLwsg==
  98. hippo.cms.jwt.token.expiration.mins=30
  99. hippo.cms.author.host=dev-local-portal.imcinternal.com:8080/cms/
  100. hippo.cms.author.protocol=http://
Add Comment
Please, Sign In to add comment