Skip to content

Instantly share code, notes, and snippets.

@hruan
Created February 16, 2015 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hruan/1d394c08907b5f89029a to your computer and use it in GitHub Desktop.
Save hruan/1d394c08907b5f89029a to your computer and use it in GitHub Desktop.
HttpPlatformHandler Web.config for Go
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%HOME%\site\wwwroot\go-azure.bat"
arguments="-port %HTTP_PLATFORM_PORT% %HOME%\site\wwwroot\_target"
startupRetryCount="3"
stdoutLogEnabled="true" />
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment