Skip to content

Instantly share code, notes, and snippets.

@bazwilliams
Created April 23, 2016 17:59
Show Gist options
  • Save bazwilliams/98d06799dfc6553fdc6aa019cdc62997 to your computer and use it in GitHub Desktop.
Save bazwilliams/98d06799dfc6553fdc6aa019cdc62997 to your computer and use it in GitHub Desktop.
Example App.config template for a self hosted Nancy application with Owin destined for Docker
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<appSettings>
<add key="BaseUrl" value="http://+:8888"/>
<add key="SerialNumberSeed" value="${SERIAL_NUMBER_SEED}"/>
</appSettings>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment