1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-27 22:34:50 +00:00
TiddlyWiki5/editions/fr-FR/tiddlers/saving/Example web.config for IIS.tid
tw-FRed b9fec0c669
[fr-FR] Translation of Saving and all saving methods (#6623)
* Remove old tiddlers already deleted from EN edition
* Start using EN edition paths for updated/new translations
2022-04-11 18:12:49 +01:00

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>