mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
b9fec0c669
* Remove old tiddlers already deleted from EN edition * Start using EN edition paths for updated/new translations
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
created: 20180328145259455
|
|
fr-title: Exemple de web.config pour IIS
|
|
modified: 20220402105820520
|
|
tags: Saving
|
|
title: Example web.config for IIS
|
|
type: text/plain
|
|
|
|
<?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"
|
|
arguments=".\node_modules\tiddlywiki\tiddlywiki.js ./wiki --listen port=PORT path-prefix=/MonAppli">
|
|
<environmentVariables>
|
|
<environmentVariable name="PORT" value="%HTTP_PLATFORM_PORT%" />
|
|
<environmentVariable name="NODE_ENV" value="Production" />
|
|
</environmentVariables>
|
|
</httpPlatform>
|
|
</system.webServer>
|
|
</configuration>
|