Skip to content

Instantly share code, notes, and snippets.

@zabirauf
Created February 12, 2015 10:45
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 zabirauf/7000a1587ab42dd2b752 to your computer and use it in GitHub Desktop.
Save zabirauf/7000a1587ab42dd2b752 to your computer and use it in GitHub Desktop.
elixir_iis_web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" requireAccess="Script"/>
</handlers>
<httpPlatform stdoutLogEnabled="true" stdoutLogFile="elixir.log" startupTimeLimit="20" processPath="C:\inetpub\wwwroot\azure-elixir\run.bat"
arguments="">
<environmentVariables>
<environmentVariable name="PORT" value="%HTTP_PLATFORM_PORT%"/>
<environmentVariable name="MIX_EXS" value="C:\inetpub\wwwroot\azure-elixir\mix.exs"/>
</environmentVariables>
</httpPlatform>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment