Created
February 12, 2015 10:45
-
-
Save zabirauf/7000a1587ab42dd2b752 to your computer and use it in GitHub Desktop.
elixir_iis_web.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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