19 lines
713 B
XML
19 lines
713 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<handlers>
|
|
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
|
|
</handlers>
|
|
<httpPlatform processPath="cmd.exe"
|
|
arguments="/c start_rails.bat"
|
|
stdoutLogEnabled="true"
|
|
stdoutLogFile=".\log\stdout.log"
|
|
startupTimeLimit="200">
|
|
<environmentVariables>
|
|
<environmentVariable name="RAILS_ENV" value="production" />
|
|
<environmentVariable name="RAILS_SERVE_STATIC_FILES" value="true" />
|
|
</environmentVariables>
|
|
</httpPlatform>
|
|
</system.webServer>
|
|
</configuration>
|