Advertisement
Guest User

Untitled

a guest
Aug 15th, 2017
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. <location path="Default Web Site">
  2. <system.webServer>
  3. <security>
  4. <authentication>
  5. <windowsAuthentication enabled="false" />
  6. <anonymousAuthentication enabled="false" />
  7. <digestAuthentication enabled="false" />
  8. <basicAuthentication enabled="false" />
  9. <iisClientCertificateMappingAuthentication enabled="true"
  10. manyToOneCertificateMappingsEnabled="true">
  11. <manyToOneMappings>
  12. <add name="Contoso Employees"
  13. enabled="true"
  14. permissionMode="Allow"
  15. userName="Username"
  16. password="[enc:AesProvider:57686f6120447564652c2049495320526f636b73:enc]">
  17. <rules>
  18. <add certificateField="Subject"
  19. certificateSubField="O"
  20. matchCriteria="Contoso"
  21. compareCaseSensitive="true" />
  22. </rules>
  23. </add>
  24. </manyToOneMappings>
  25. </iisClientCertificateMappingAuthentication>
  26. </authentication>
  27. <access sslFlags="Ssl, SslNegotiateCert" />
  28. </security>
  29. </system.webServer>
  30. </location>
  31.  
  32. <site name="WebApplication1" id="2">
  33. <application path="/" applicationPool="Clr4IntegratedAppPool">
  34. <virtualDirectory path="/" physicalPath="c:usersedward.joelldocumentsvisual studio 2012ProjectsWebApplication1WebApplication1" />
  35. </application>
  36. <bindings>
  37. <binding protocol="http" bindingInformation="*:61313:localhost" />
  38. </bindings>
  39. </site>
  40.  
  41. <site name="WebApplication1" id="2">
  42. <application path="/" applicationPool="Clr4IntegratedAppPool">
  43. <virtualDirectory path="/" physicalPath="c:usersedward.joelldocumentsvisual studio 2012ProjectsWebApplication1WebApplication1" />
  44. </application>
  45. <bindings>
  46. <binding protocol="http" bindingInformation="*:61313:localhost" />
  47. <binding protocol="https" bindingInformation="*:44313:localhost" />
  48. </bindings>
  49. </site>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement