Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
This document provides an introduction to configuration in EPiServer, and describes the configuration files and their structure in the EPiServer platform, incuding the different files and elements used for storing configuration settings and the hierarchy within them.
When installing the EPiServer platform with CMS and Commerce, you will get a set of configuration files in the wwwroot folder of both the CMS and Commerce Manager websites. These configuration files are used for general configuration of websites, database connections and log features.
Note: Previous releases of EPiServer CMS used the configSource attibute to extract the episerver and the episerver.framework sections into separate files called episerver.config and episerverFramework.config.
You may also find the following configuration files in an EPiServer installation:
In addition to these general configuration files, there are other feature-specific configuration files available in the solution folder structures for CMS and Commerce.
Like all ASP.NET web applications, EPiServer CMS stores configuration settings in the web.config located in the root directory of the application. ASP.NET uses functionality called configuration inheritance, this means that the file in your project only contains changes and additions to the configuration found in the machine.config file which is the base configuration for all applications on your machine.
The web.config file is separated into smaller parts called sections. Each section contains settings for a specific part of the application, usually based on namespaces. For example, the settings used by the classes in the System.Web namespace are stored within the <system.web> section in web.config. At the top of web.config you can find a list of section definitions, these definitions tells ASP.NET what sections are used by this application in addition to the sections inhertied from machine.config. A definition also tells ASP.NET what class to use when creating an object representation of the section. Below is an example of a definition.
<section name="episerver.dataStore" type="EPiServer.Data.Configuration.EPiServerDataStoreSection, EPiServer.Data" />
Looking at the list of section definitions you can see that the EPiServer CMS API has several sections in which settings are stored. If you scroll further down in the web.config file you will find the actual instances of the sections where values are assigned to the section properties.
<episerver.dataStore>
<dataStore defaultProvider="EPiServerSQLServerDataStoreProvider">
<providers>
...
EPiServer CMS settings can be accessed through the use of a configuration class. All settings are typed members of this class, which gives the benefit of being able to see all settings through IntelliSense. Access to the CMS application settings goes through the static object EPiServer.Configuration.Settings.Instance. There is no need to instantiate this class since it is a global static available throughout all of the application.
The configuration files are in XML format and are divided into sections containing configurations for various system parts. This document describes the typographical conventions for the descriptions of configuring elements and attributes. Each subelement is described in two different ways: a pseudo XML structure showing the hierarchy and including all attributes and a set of tables describing each element’s attributes in more detail.
Example:
<someElement>
<optionalCollectionElement>
<add optionalAttribute="valueType"
requiredAttribute="valueType" />
...
</optionalCollectionElement>
<optionalElement (obsoleteAttribute="valueType")
optionalAttribute="valueType"
requiredAttribute="valueType" />
<requiredElement (obsoleteAttribute="valueType")
optionalAttribute="valueType"
requiredAttribute="valueType" />
</someElement>
More detailed descriptions of attributes are displayed in table format, one table for each element.
Example:
Name | Default Value | Description |
---|---|---|
(obsoleteAttribute) | Description of obsoleteAttribute. | |
optionalAttribute | This is the default value | Description of optionalAttribute. |
requiredAttribute | Another default value | Required. Description of requiredAttribute. |
The configuration elements listed below are described in this documentation section.
Refer to the documentation below for more information on configuration-related topics.
Last updated: Feb 23, 2015