Created
February 19, 2013 15:50
-
-
Save MikeLarned/4987055 to your computer and use it in GitHub Desktop.
Example ServiceConfigration.Cloud.csfg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <ServiceConfiguration serviceName="MyApp.CloudService" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="3" osVersion="*" schemaVersion="2012-10.1.8"> | |
| <Role name="MyApp.Web"> | |
| <Instances count="2" /> | |
| <ConfigurationSettings> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=test;AccountKey=<KEY INFO>" /> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.Enabled" value="true" /> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountUsername" value="<REMOTE DESKTOP USERNAME>" /> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountEncryptedPassword" value="<ENCRYPTED PASSWORD>" /> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountExpiration" value="<EXPIRE DATE>" /> | |
| <Setting name="Microsoft.WindowsAzure.Plugins.RemoteForwarder.Enabled" value="true" /> | |
| </ConfigurationSettings> | |
| <Certificates> | |
| <Certificate name="<CERTIFICATE NAME>" thumbprint="<THUMBPRINT>" thumbprintAlgorithm="sha1" /> | |
| <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint="<THUMBPRINT>" thumbprintAlgorithm="sha1" /> | |
| </Certificates> | |
| </Role> | |
| </ServiceConfiguration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment