Skip to content

Instantly share code, notes, and snippets.

@domgreen
Created April 16, 2011 16:56
Show Gist options
  • Save domgreen/923280 to your computer and use it in GitHub Desktop.
Save domgreen/923280 to your computer and use it in GitHub Desktop.
Azure Service Def file
<?xml version="1.0" encoding="utf-8"?>
<ServiceDefinition name="mySiteInAzure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
<WebRole name="MvcTestAzure">
<Sites>
<Site name="Web">
<Bindings>
<Binding name="Endpoint1" endpointName="Endpoint1" />
</Bindings>
</Site>
</Sites>
<Endpoints>
<InputEndpoint name="Endpoint1" protocol="http" port="80" />
</Endpoints>
</WebRole>
</ServiceDefinition>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment