Skip to content

Instantly share code, notes, and snippets.

@sjwaight
Last active February 11, 2017 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjwaight/f6d20be26a2d9229fb6eb742ce0d187a to your computer and use it in GitHub Desktop.
Save sjwaight/f6d20be26a2d9229fb6eb742ce0d187a to your computer and use it in GitHub Desktop.
Sample tokenisation parameters file for use with Web Deploy
<parameters>
<parameter name="IIS Web Application Name" description="IIS Web Application Name" defaultvalue="__iisappname__">
<parameterentry kind="ProviderPath" scope="IiSApp" match="@defaultvalue"/>
</parameter>
<parameter name="LoggingDatabaseAccount" description="Main Document DB Account" defaultvalue="__docdburi__">
<parameterentry kind="XmlFile" scope="\\Web.config$" match="/configuration/appSettings/add[@key='LoggingDatabaseAccount']/@value"/>
</parameter>
<parameter name="LoggingDatabaseKey" description="Key to access Main Document DB Account" defaultvalue="__docdbkey__">
<parameterentry kind="XmlFile" scope="\\Web.config$" match="/configuration/appSettings/add[@key='LoggingDatabaseKey']/@value"/>
</parameter>
<parameter name="LoggingDatabase" description="Document DB Id" defaultvalue="__loggingdb__">
<parameterentry kind="XmlFile" scope="\\Web.config$" match="/configuration/appSettings/add[@key='LoggingDatabase']/@value"/>
</parameter>
<parameter name="LoggingDatabaseCollection" description="Document DB Collection" defaultvalue="__loggingdbcollection__">
<parameterentry kind="XmlFile" scope="\\Web.config$" match="/configuration/appSettings/add[@key='LoggingDatabaseCollection']/@value"/>
</parameter>
</parameters>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment