Skip to content

Instantly share code, notes, and snippets.

@MikeLarned
Created February 19, 2013 15:24
Show Gist options
  • Select an option

  • Save MikeLarned/4986825 to your computer and use it in GitHub Desktop.

Select an option

Save MikeLarned/4986825 to your computer and use it in GitHub Desktop.
ServiceDefinition.csdef
<?xml version="1.0" encoding="utf-8"?>
<ServiceDefinition name="MyApp.Azure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2012-10.1.8">
<WebRole name="MyApp.Web" vmsize="Small">
<Sites>
<Site name="Web" physicalDirectory="../../Publish/MyApp.Web/">
<VirtualApplication name="api" physicalDirectory="../../Publish/MyApp.Api/" />
<Bindings>
<Binding name="Endpoint1" endpointName="Endpoint1" />
</Bindings>
</Site>
</Sites>
<Endpoints>
<InputEndpoint name="Endpoint1" protocol="http" port="80" />
</Endpoints>
<Imports>
<Import moduleName="Diagnostics" />
</Imports>
</WebRole>
</ServiceDefinition>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment