November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Note: Azure Web Sites was changed to Azure Web Apps.
This topic describes how to set up an Episerver CMS site to run on Azure Web Apps. The example creates an Alloy sample site from the Episerver Visual Studio plug-in (from version 7.7), but you can apply most steps to sites created in other ways.
The following image illustrates a CMS website running in an Azure Web Apps environment with multiple instances. The website instances share the same SQL database and BLOB storage that stores binary file data in the cloud environment. The sites are load-balanced, and a Service Bus manages events between the CMS websites.
Elastic scaling lets you increase or reduce the number of CMS sites from the Azure administration interface.
The following steps create an Episerver CMS website running in an Azure website environment.
Note: To add the cloud license, you need to install the Episerver Visual Studio plug-in, and make sure you are using at least CMS version 7.7. You can install this plug-in via Extension Manager in Visual Studio.
Log in to the Azure management portal and follow these steps to create a website:
When you run on Azure, you should store the media (such as images) in Azure BLOB storage to enable scaling.
TIP: Create two BLOB storage accounts: one for development and one for production, and switch between them using just the connection string.
To scale the site to run on several instances, set up a Service Bus in Azure to handle messages among the site instances.
TIP: Create two Service Bus accounts: one for development and one for production, and switch between them using just the connection string.
Open web.config and add the following configuration under the episerver.framework section to map BLOB and event providers to Azure.
<blob defaultProvider="azureblobs">
<providers>
<add name="azureblobs" type="EPiServer.Azure.Blobs.AzureBlobProvider,EPiServer.Azure"
connectionStringName="EPiServerAzureBlobs" container="mysitemedia"/>
</providers>
</blob>
<event defaultProvider="azureevents">
<providers>
<add name="azureevents" type="EPiServer.Azure.Events.AzureEventProvider,EPiServer.Azure"
connectionStringName="EPiServerAzureEvents" topic="MySiteEvents"/>
</providers>
</event>
Note: The attribute container for the BLOB provider and topic for event provider should be unique per site, within the same storage or service bus account.
connectionString="DefaultEndpointsProtocol=https;AccountName=<name>;AccountKey=<key>"
The following example shows database connection strings in web.config, defined for Azure:
<connectionStrings>
<clear />
<add name="EPiServerDB" connectionString="Server=tcp:abcdefgh.database.windows.net,1433;Database=mySiteDB;User ID=dbadmin@abcdefgh;Password={password};Trusted_Connection=False;Encrypt=True;Connection Timeout=30;MultipleActiveResultSets=True" providerName="System.Data.SqlClient" />
<add name="EPiServerAzureBlobs" connectionString="DefaultEndpointsProtocol=https;AccountName=mystorageccount;AccountKey=abcdefghijklmnoabcdefghijklmnoabcdefghijklmno" />
<add name="EPiServerAzureEvents" connectionString="Endpoint=sb://myservicebus.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=abcdefghijklmnoabcdefghijklmnoabcdefghijklmno=" />
</connectionStrings>
Note: If your client cannot access the database server, configure access permissions through the Azure portal by selecting the SQL database and follow the Manage Allowed IP Addresses instructions.
Note: You can skip this step for sites created using the latest version of the Visual Studio extension where workflows are disabled by default.
The database schema for Workflow 3.5 is not supported in the Azure database. Therefore, you must remove the configuration for Workflow persistence service from web.config; that is, the entry with type SqlWorkflowPersistenceService under workflowRuntime/Services.
Removal of workflow persistance configuration in web.config:
<workflowRuntime EnablePerformanceCounters="false">
<Services>
<add type="System.Workflow.Runtime.Hosting.DefaultWorkflowSchedulerService, System.Workflow.Runtime, Version=3.0.00000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" maxSimultaneousWorkflows="5" />
<add type="System.Workflow.Runtime.Hosting.SharedConnectionWorkflowCommitWorkBatchService, System.Workflow.Runtime, Version=3.0.00000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<strong>REMOVE THIS: <add type="System.Workflow.Runtime.Hosting.SqlWorkflowPersistenceService, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" UnloadOnIdle="true" /></strong>
</Services>
</workflowRuntime>
Disable workflows completely by adding the disabled attribute to the workflowSettings element. [Requires 7.14.]
<episerver>
(..)
<workflowSettings disabled="true" />
(..)
</episerver>
You can upload the site manually using FTP, or integrate your source control system to get the process fully automated. The following steps describe the publish functionality available from within Visual Studio:
Note: Make sure the modules and modulesbin folders are included in the project so they are published. Publishing the database schema should be performed only on the first publish operation.
Note: You can also deploy the database schema using SQL Server Management Studio or the tools available in the Azure Management Portal. The script you should run is available relative to the project ([SolutionDir]\packages\EPServer.CMS.Core.7.6.0\tools\EPiServer.Cms.Core.sql). See also Microsoft's SQL Server database migration to Azure SQL Database.
You can configure Azure Web Apps so that it uses continuous deployment from source code control. It supports Git, GitHub, and TFS. See Publish from source control . When you commit to your source control, Windows Azure gets the latest code from the source control, builds it, and deploys the output to the website. When you work with a local Git repository, you can push your changes to Azure Web Apps instead.
From version 7.7 of CMS, there is a bootstrap feature for content. It works so that if there is an export package located at [SolutionDir]\App_Data\DefaultSiteContent.episerverdata then during initialization that package is imported and a site is created. The bootstrap happens only if the site does not have any previous content. For cloud deployment, you may want to first publish the project to the cloud environment before starting a local site configured against the cloud database. Then the bootstrap happens in the cloud environment, which is much faster (because the site and database are likely in same datacenter) and also sets the SiteUrl to the cloud url for the created site.
You also can transfer data to an Episerver site running on Azure Web Apps using the Episerver CMS export/import functionality.
Export the start page from your local site and database and import on the site running in Azure before continuing to the next step.
To log in to the site on Azure, create a user with access to the edit/admin view, start the local site while connected to SQL Azure, and perform the following steps. You must allow the source IP address to access the Azure database server. You can enable this in the Azure Management Portal on the specific SQL Azure server.
Depending on how the site was created (see Deploying/Deploying content) you might need to update the site definition for the Episerver CMS website created in the first steps after deployment. If so, log in to the website and go to the CMS admin view > Config > Manage Websites, and change the Site URL to the URL in Azure. This will also map a host name to the correct site in CMS. The URL can be found in the Azure Management portal under WEB SITES when selecting the created website, and selecting dashboard in the top menu. Then the site URL is given in the right column.
You should use a scalable search solution when you host in Azure. Episerver Find is a hosted service that you connect to and it works the same way as when your site runs on-premises.
If you want to use the built-in Episerver Search when running in Azure Web Apps, install the EPiServer.Search Nuget package on an empty web site, and then deploy the Search Service as a separate Azure Web Apps instance. You should set the baseUri attribute for the search client configuration on the site using the Search Service to the Azure Web Apps hosting the Search Service.
Note: The Azure website running the search service should not be scaled to run on several instances, because this causes data corruption in the Lucene index. If you need scaling then use Episerver Find instead. If you add search capability after you have added the content, you need to build the index at http://<MySite>/<MyUIFolder>/Cms/Admin/IndexContent.aspx on the website.
Azure Web Apps supports deployment slots so you can deploy new code into a staging environment before moving it to production. To make sure deployment slots do not interfer with the production environment, make sure you define the EPiServerDB, EPiServerAzureEvents and EPiServerAzureBlobs connection strings in the Azure portal as "sticky" (session affinity) to each slot. If a deployment slot re-uses the production connection strings, it is treated as a load-balanced server, part of the production environment, including licensing restrictions. See Microsoft documentation for details about using staging with Azure Web Apps.
Note: Defining EPiServerDB as a connection string in the Azure Portal requires at least EPiServer.CMS.Core 8.3.0. You must enable this feature by adding an app setting episerver:ReadOnlyConfigurationAPI in the portal, with the value set to true.
The core parts of Episerver CMS do not use Session State but some functionality does, such as some Visitor Groups criteria. There are two approaches to enabling session state, depending on the sticky session feature (also known as session affinity) provided by Azure Web Apps that makes sure a user is reaching the same server combined with the default in-memory session state provider.
Another approach to enable better scaling is using an optimized provider for Azure, such as the session provider for Azure Web Apps.
Last updated: Sep 21, 2015