2018-03-29 11:51:31 +00:00
|
|
|
<?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=".\node.log"
|
|
|
|
startupTimeLimit="20"
|
|
|
|
processPath="C:\Program Files\nodejs\node.exe"
|
2018-07-18 15:54:43 +00:00
|
|
|
arguments=".\node_modules\tiddlywiki\tiddlywiki.js ./wiki --listen port=PORT path-prefix=/MyApp">
|
2018-03-29 11:51:31 +00:00
|
|
|
<environmentVariables>
|
|
|
|
<environmentVariable name="PORT" value="%HTTP_PLATFORM_PORT%" />
|
|
|
|
<environmentVariable name="NODE_ENV" value="Production" />
|
|
|
|
</environmentVariables>
|
|
|
|
</httpPlatform>
|
|
|
|
</system.webServer>
|
|
|
|
</configuration>
|