Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <location path="SimpleApi" overrideMode="Allow">
  2. <system.webServer>
  3. <security>
  4. <authentication>
  5. <iisClientCertificateMappingAuthentication enabled="true" oneToOneCertificateMappingsEnabled="false">
  6. <manyToOneMappings>
  7. <add name="Authorized Access" description="Some long description" userName="SomeUser" password="[enc:AesProvider:removed:enc]">
  8. <rules>
  9. <clear />
  10. <add certificateField="Subject" certificateSubField="OU" matchCriteria="Admin" />
  11. </rules>
  12. </add>
  13. </manyToOneMappings>
  14. <oneToOneMappings />
  15. </iisClientCertificateMappingAuthentication>
  16. </authentication>
  17. </security>
  18. </system.webServer>
  19. </location>
  20. <location path="SimpleApi">
  21. <system.webServer>
  22. <security>
  23. <access sslFlags="Ssl, SslNegotiateCert, SslRequireCert" />
  24. </security>
  25. </system.webServer>
  26. </location>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement