Set up an environment-based configuration
To set up an environment-based configuration:
-
Create a folder for each of your environments under the
<your-xp-role>/App_Data/config
folder. The following example includes the two environment specific foldersproduction
anddevelopment
: -
Add environment-specific configuration files to your folders. Configuration files must start with
sc.
and end with.xml
.NoteYou do not need to use the same subfolder structure as the
<your-xp-role>/App_Data/Config/Sitecore
folder. -
To activate the configuration files for a specific environment, set the
configurationEnvironment
variable in the<your-xp-role>/App_Data/AppSettings.config
file. For example, this code enables the files in thedevelopment
folder:RequestResponse<?xml version="1.0" encoding="utf-8"?> <appSettings> <add key="configurationDirectoryRoot" value="App_Data" /> <add key="configurationEnvironment" value="development" /> </appSettings>