London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Episerver CMS is multi-tenant, which means that a single running instance of CMS can host multiple websites. A multi-site setup is a solution where all sites share the same file structure on the web server and the same database for storage. Websites in a multi-site setup can share content assets, such as media and blocks. You can also run several parallel websites on the same server.
You have the following options to add new websites:
Note: Even though CMS is multi-tenant, you can create separate IIS sites for separate CMS sites, using host headers to direct requests to the correct IIS site. The purpose of separating CMS sites into different IIS sites is to isolate sites in different processes from a fault tolerance perspective. This can be justified in some scenarios, even though memory usage may increase. When you run CMS in multiple processes, you have to configure the event system for inter-process events. As a best practice, always consider using load-balancing for fault tolerance instead of separating sites into IIS sites.
The following steps show how you set up multiple sites:
If you configure the IIS application to respond to any host name, then you can launch new sites from the CMS admin view without additional configuration. To define multiple sites, select Config tab > Manage Websites. You can add new sites and update existing sites. The website URL acts as a default URL to the website in cases where links are generated to the website.
You need only a start page and a URL for the new site. The URL and start page are stored in the database, and new sites are automatically provisioned. When you launch new sites, you can also configure them to use site-specific assets. For example, when you create a campaign website, editors may want to store assets in folders only available to that specific campaign site.
By default, one of the installed sites has the * (wild card) host mapping. You can also add additional hosts mappings, such as partner.examplesite.com or customer.examplesite.com, optionally bound to a specific language. You can also set up additional hosts that only should redirect to the main host or a specific host that should serve as the primary host for a specific language and the target for all redirects. Redirects only apply to content; to redirect a complete site, use settings in IIS instead.
Implementation code running under a web request, such as templates, does not need to take into account that multiple websites exist, because CMS automatically routes requests to the correct site. You can access the current site using the SiteDefinition.Current property (in the namespace EPiServer.Web).
A scenario where you may need to take into account that there are multiple sites is when running a scheduled job. Use the SiteDefinitionRepository class to list all sites and take appropriate action. You can use the SiteDefinition.Current property to access settings that are shared between sites when the current site cannot be determined. An example of such setting is the root page.
A possible misconception regarding authentication in multi-site setup is that logging out of one site while being logged in on other sites would also log you out from these websites. This is not the case because when you use Forms Authentication, by default, it stores authentication in a cookie per domain in the visitor's browser.
Last updated: Sep 21, 2015