123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
-
- <configSections>
- <!-- Append below entry to configSections. Do not overwrite the full section. -->
- <section name="dataCacheClients" type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere" />
- </configSections>
-
- <dataCacheClients>
- <dataCacheClient name="default">
- <hosts>
- <host name="[Insert Cache EndPoint]" cachePort="22233" />
- </hosts>
- <securityProperties mode="Message">
- <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
- </securityProperties>
- </dataCacheClient>
-
- <dataCacheClient name="SslEndpoint">
- <hosts>
- <host name="[Insert Cache EndPoint]" cachePort="22243" />
- </hosts>
- <securityProperties mode="Message" sslEnabled="true">
- <messageSecurity authorizationInfo="[Encrypted ACS token goes here]"></messageSecurity>
- </securityProperties>
- </dataCacheClient>
- </dataCacheClients>
- </configuration>
|