-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config.goliath
31 lines (26 loc) · 1.21 KB
/
web.config.goliath
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<heliconZoo>
<application name="goliath.project.x86" >
<environmentVariables>
<add name="APP_WORKER" value="app.rb" />
<add name="RACK_ENV" value="production" />
</environmentVariables>
</application>
<application name="goliath.project.x64" >
<environmentVariables>
<add name="APP_WORKER" value="app.rb" />
<add name="RACK_ENV" value="production" />
</environmentVariables>
</application>
</heliconZoo>
<!--
<engine name="goliath.http4" fullPath="%SystemDrive%\Ruby19\bin\ruby.exe" arguments=""%APPL_PHYSICAL_PATH%\%APP_WORKER%" -e %RACK_ENV% -a %HOST% -p %PORT%" transport="tcp" protocol="http" minInstances="4" maxInstances="4" />
-->
<handlers>
<add name="goliath.project.x86" scriptProcessor="goliath.http4" path="*" verb="*" modules="HeliconZoo_x86" preCondition="bitness32" resourceType="Unspecified" requireAccess="Script" />
<add name="goliath.project.x64" scriptProcessor="goliath.http4" path="*" verb="*" modules="HeliconZoo_x64" preCondition="bitness64" resourceType="Unspecified" requireAccess="Script" />
</handlers>
</system.webServer>
</configuration>