Skip to content

Instantly share code, notes, and snippets.

@JRondeau16
Created November 21, 2017 20:32
Show Gist options
  • Save JRondeau16/a915152228fc4f9eee09f46f855fb978 to your computer and use it in GitHub Desktop.
Save JRondeau16/a915152228fc4f9eee09f46f855fb978 to your computer and use it in GitHub Desktop.
web.config Roles + Environments
<appSettings>
<!--Local-->
<add key="env:define" value="Local" />
<add key="role:define" value="Standalone"/>
<!--Develop-->
<add key="env:define" value="Develop" />
<add key="role:define" value="Standalone"/>
<!--Beta-->
<add key="env:define" value="Beta" />
<add key="role:define" value="ContentManagement, Processing, Reporting"/>
<add key="role:define" value="ContentDelivery"/>
<!--Live-->
<add key="env:define" value="Live" />
<add key="role:define" value="ContentManagement, Processing, Reporting"/>
<add key="role:define" value="ContentDelivery"/>
</appSettings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment