Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. # Properties used by oiosaml-j
  2.  
  3. # Reference to the location of the certificate used for signing SAML documents with - relative to ${oiosaml.home}
  4. oiosaml-sp.certificate.location=./certificate/keystore
  5.  
  6. # Opaque/encrypted password to the certificate used for signing SAML documents
  7. #oiosaml-sp.certificate.password=ab987c
  8. oiosaml-sp.certificate.password=123456
  9. #oiosaml-sp.certificate.password=kpi135
  10. #oiosaml-sp.certificate.password=111111
  11.  
  12. # Required authentication level. 2=password, 3=certificate
  13. oiosaml-sp.assurancelevel=0
  14.  
  15. # Name of the meta data file for the current service provider - overrides setting in brs-common.properties
  16. common.saml2.metadata.sp.filename=SPMetadata.xml
  17.  
  18. # URI References to the current service provider
  19. oiosaml-sp.uri.home=/restricted/main.html
  20. oiosaml-sp.uri.homeAfterLogout=../index.html
  21.  
  22.  
  23. # Whether to validate server certificates. Set to false in production.
  24. # Used for artifact resolution.
  25. oiosaml-sp.resolve.ignorecert=false
  26.  
  27. # Artifact resolution username and password. Only used the artifact profile is active.
  28. # oiosaml-sp.resolve.username=rolf.trifork.com
  29. # oiosaml-sp.resolve.password=rolf.trifork.com
  30.  
  31. #oiosaml-sp.errors=/error.jsp
  32.  
  33. # JDBC factory configs
  34. # oiosaml-sp.sessionhandler.factory=dk.itst.oiosaml.sp.service.session.jdbc.JdbcFactory
  35. # oiosaml-sp.sessionhandler.jdbc.url=jdbc:oracle:thin:@192.168.10.107:1521:d00pgu
  36. # oiosaml-sp.sessionhandler.jdbc.driver=oracle.jdbc.driver.OracleDriver
  37. # oiosaml-sp.sessionhandler.jdbc.username=sia
  38. # oiosaml-sp.sessionhandler.jdbc.password=sia
  39.  
  40.  
  41. ## WS factory settings
  42. # oiosaml-sp.sessionhandler.factory=dk.itst.oiosaml.sp.service.session.SingleVMSessionHandlerFactory
  43. oiosaml-sp.sessionhandler.factory=dk.itst.oiosaml.sp.service.session.jdbc.JndiFactory
  44. oiosaml-sp.sessionhandler.jndi=java:/auctionDS
  45.  
  46. oiosaml-sp.sessionhandler.context=pgu
  47. # oiosaml-sp.sessionhandler.context=foreign
  48.  
  49. ## Strore sessionId in cookie
  50. oiosaml-sp.sessionhandler.idfromcookie=true
  51. oiosaml-sp.sessionhandler.cookieid.secure=false
  52. oiosaml-sp.sessionhandler.cookieid.httponly=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement