Advertisement
Guest User

Untitled

a guest
Oct 26th, 2017
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.49 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <configSections>
  4. <section name="Saml" type="dk.nita.saml20.config.ConfigurationReader, dk.nita.saml20, Version=1.9.1.0, Culture=neutral, PublicKeyToken=null" />
  5. <section name="alphaconfig" type="Bars.AKernel.Config.AlphaSectionHandler, Bars.AKernel"/>
  6. </configSections>
  7.  
  8. <Saml auditLoggingType="dk.nita.saml20.Logging.Log4NetAuditLogger, dk.nita.saml20.ext.audit.log4net"
  9. xmlns="urn:dk.nita.saml20.configuration">
  10. <SigningCertificate findValue="lolo"
  11. storeLocation="LocalMachine" storeName="My" x509FindType="FindByThumbprint"
  12. validOnly="false" />
  13. <AllowedAudienceUris>
  14. <Audience>http://31.13.134.41/</Audience>
  15. </AllowedAudienceUris>
  16. <ServiceProvider id="BI_test" server="http://31.13.134.41/">
  17. <ServiceEndpoint localpath="http_handlers/saml_login.ashx" type="signon"
  18. index="0" redirectUrl="~/" binding="NOT_SET" errorBehaviour="throwexception" />
  19. <ServiceEndpoint localpath="http_handlers/saml_logout.ashx" type="logout"
  20. index="0" redirectUrl="~/" binding="NOT_SET" errorBehaviour="throwexception" />
  21. <ServiceEndpoint localpath="http_handlers/saml_logout.ashx" type="soaplogout"
  22. index="0" binding="NOT_SET" errorBehaviour="throwexception" />
  23. <ServiceEndpoint localpath="http_handlers/saml_metadata.ashx"
  24. type="metadata" index="0" binding="NOT_SET" errorBehaviour="throwexception" />
  25. <NameIdFormats all="false" />
  26. <Organization xmlns="urn:oasis:names:tc:SAML:2.0:metadata">
  27. <OrganizationName xml:lang="ru">Тест</OrganizationName>
  28. <OrganizationDisplayName xml:lang="ru">Тестовая организация</OrganizationDisplayName>
  29. <OrganizationURL xml:lang="ru">http://example.com/</OrganizationURL>
  30. </Organization>
  31. <ContactPerson contactType="technical" xmlns="urn:oasis:names:tc:SAML:2.0:metadata">
  32. <Company>Тестовая компания</Company>
  33. <GivenName>Имя</GivenName>
  34. <SurName>Фамилия</SurName>
  35. <EmailAddress>example@example.org</EmailAddress>
  36. <TelephoneNumber>+7 (111) 1-111-111</TelephoneNumber>
  37. </ContactPerson>
  38. </ServiceProvider>
  39. <RequestedAttributes />
  40. <SessionTimeout>30</SessionTimeout>
  41. <PreventOpenRedirectAttack>true</PreventOpenRedirectAttack>
  42. <SessionCookiesSecure>false</SessionCookiesSecure>
  43. <Actions>
  44. <clear />
  45. <add name="LoginAction" type="Bars.Alpha.Security.Saml.SamlLoginAction, Bars.Alpha.Security" />
  46. </Actions>
  47. <CommonDomain enabled="false" />
  48. <NameIdFormat>urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName</NameIdFormat>
  49. <ShowError>true</ShowError>
  50. <MinimumAssuranceLevel>3</MinimumAssuranceLevel>
  51. <IDPEndPoints metadata=".saml-metadata">
  52. <add id="https://ia-test.egisz.rosminzdrav.ru/realms/master" name="https://ia-test.egisz.rosminzdrav.ru/realms/master"
  53. QuirksMode="false" omitAssertionSignatureCheck="true" forceAuthn="false"
  54. isPassive="false" default="false">
  55. <CertificateValidation>
  56. <add type="dk.nita.saml20.Specification.SelfIssuedCertificateSpecification, dk.nita.saml20" />
  57. </CertificateValidation>
  58. </add>
  59. </IDPEndPoints>
  60. </Saml>
  61. <alphaconfig>
  62. <mongoconfig connstring="server=localhost:3333" dbprefix="egsz"
  63. duplicateconnection="" />
  64. <networksettings requestTimeoutSeconds="120000" />
  65. <rdbms providerCode="PostgreSql" serverAddress="localhost" serverPort="5432"
  66. systemPassword="password" systemUser="username" databasesPrefix="egsz2"
  67. database="" additionalParams="" duplicateConnection="" />
  68. <olap xmlaEndpoint="http://localhost:9999/mondrian/xmla" providerCode="Mondrian"
  69. database="" systemUser="" systemPassword="" additionalParams="" />
  70. <localization language="Ru" />
  71. <setup installed="true" />
  72. <appsettings>
  73. <clear />
  74. <add key="localFileStorage" value="C:\www\EGSZ_Storage" />
  75. <add key="log.entityDiff" value="false" />
  76. <add key="quartz.threadPool.threadCount" value="15" />
  77. <add key="quartz.threadPool.threadPriority" value="Normal" />
  78. <add key="gis.disableRouterCache" value="true" />
  79. <add key="gis.disableLayersCache" value="true" />
  80. <add key="MigraionKey" value="migrationkey" />
  81. <add key="authProvider" value="saml" />
  82. <add key="samlProvider" value="esiaia" />
  83. <add key="onlyEsiaiaBtn" value="true" />
  84. </appsettings>
  85. </alphaconfig>
  86.  
  87. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement