Skip to content

Instantly share code, notes, and snippets.

@kabukky
Last active August 29, 2015 14:21
Show Gist options
  • Save kabukky/679fe447e5114d94f6de to your computer and use it in GitHub Desktop.
Save kabukky/679fe447e5114d94f6de to your computer and use it in GitHub Desktop.
Web.Config to set up Journey as a Windows Azure Web App
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="d:\home\site\wwwroot\journey\journey.exe"
arguments="-log=d:\home\site\wwwroot\journey\log.txt -http-port=%HTTP_PLATFORM_PORT%"
startupTimeLimit="60">
</httpPlatform>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment