app.config.Transform 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <!-- Append below entry to configSections. Do not overwrite the full section. -->
  5. <section name="dataCacheClients" type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere" />
  6. </configSections>
  7. <dataCacheClients>
  8. <dataCacheClient name="default">
  9. <hosts>
  10. <host name="[Insert Cache EndPoint]" cachePort="22233" />
  11. </hosts>
  12. <securityProperties mode="Message">
  13. <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
  14. </securityProperties>
  15. </dataCacheClient>
  16. <dataCacheClient name="SslEndpoint">
  17. <hosts>
  18. <host name="[Insert Cache EndPoint]" cachePort="22243" />
  19. </hosts>
  20. <securityProperties mode="Message" sslEnabled="true">
  21. <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
  22. </securityProperties>
  23. </dataCacheClient>
  24. </dataCacheClients>
  25. </configuration>