web.config.Transform 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0"?>
  2. <!--
  3. For more information on how to configure your ASP.NET application, please visit
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <configSections>
  8. <!-- Append below entry to configSections. Do not overwrite the full section. -->
  9. <section name="dataCacheClients" type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere"/>
  10. </configSections>
  11. <dataCacheClients>
  12. <dataCacheClient name="default">
  13. <hosts>
  14. <host name="[Insert Cache EndPoint]" cachePort="22233" />
  15. </hosts>
  16. <securityProperties mode="Message">
  17. <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
  18. </securityProperties>
  19. </dataCacheClient>
  20. <dataCacheClient name="SslEndpoint">
  21. <hosts>
  22. <host name="[Insert Cache EndPoint]" cachePort="22243" />
  23. </hosts>
  24. <securityProperties mode="Message" sslEnabled="true">
  25. <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
  26. </securityProperties>
  27. </dataCacheClient>
  28. </dataCacheClients>
  29. </configuration>