Setting up Kentico in Azure Web Apps

This scenario expects that you want to create a new Kentico website as a Azure Web Apps service. You can create a new Kentico website:

Creating Azure Web Apps from the Microsoft Azure Marketplace

You can find a Kentico CMS package in the Azure marketplace. Creating new web apps using the provided template is quick and easy.

  1. Open the Azure Management Portal.
  2. Click New -> Web + Mobile.
  3. Click See all and search for Kentico CMS.
  4. Select Kentico CMS from the list of results and click Createon the newly opened tab.
  5. Type the URL (name) of your web app.
  6. Select a Resource Group.
  7. Set your preferred App Service plan.
  8. Select an existing or create a new SQL database and server.
    Creating a Kentico instance in Azure Web Apps
  9. Click Create.

Database installation

  1. Access the created website.

  2. Provide the server name and credentials for the server where you created the database.

  3. Click Next.

  4. Select Use an existing database and type the name of the database created for the website.

  5. Click Next.

  6. Click Next without filling in any fields.

  7. Select Create a new site or import an existing Kentico site and click Next.

    • The installer redirects you to the Kentico administration interface.
  8. Switch to the Licenses tab and add the license for the website domain.

Perform the following final configurations:

The Kentico CMS package on the Azure Marketplace is intended mainly for evaluation purposes. To develop fully qualified websites, we recommend installing and deploying Kentico from a local environment, which gives you full control over the project’s source files and all ancillary Kentico features (such as applying hotfixes).

Creating Azure Web Apps from Visual Studio

This scenario presumes that you already have a Kentico project installed on a local computer and you want to deploy it to the Azure Web App service using Visual Studio. You can also create the Web App service directly from Visual Studio.

In Microsoft Visual Studio 2012 and 2013, the service is still called Azure Websites.

Creating Azure Web Apps in Visual Studio 2017

  1. Open your Kentico project in Visual Studio.

  2. Open the Server Explorer tab (or Database Explorer tab in Express editions of Visual Studio).

  3. Expand the Azure section, right-click App Service, and select Create New App Service… 

    • The Create App Service dialog opens.
  4. Enter the web app name (the resulting URL of your application).

  5. Select the Azure subscription under which the Web App will be created.

  6. Select an existing Resource Group or create a new one.

  7. Select an existing App Service plan or create a new one.
    Creating an App Service in Visual Studio 2017

  8. Click Create a new SQL Database and create a new database for the application.

    1. Enter the name of the database.
    2. Select an existing or create a new SQL server.
    3. Provide credentials for the server.
    4. Set the Connection String Name field to CMSConnectionString.
    5. Click OK.
      Creating a new SQL Database
  9. Back in the main dialog window, click Create.

Visual Studio creates the App Service. Continue with adjusting the configuration of the web.config file of your project, and deploying.

  1. Right-click the created web app (you might need to refresh the App Service section for the app to appear) and select View settings.

  2. Copy the connection string value and paste it to the web.config file of your project.

    
    
    
     <connectionStrings>
         <add name="CMSConnectionString" connectionString="Data Source=tcp:YourServerName.database.windows.net,1433;Initial Catalog=YourDatabaseName;User Id=YourUsername@YourServerName;Password=YourPassword;" />
     </connectionStrings>
    
    
     

    Replace YourServerNameYourDatabaseNameYourUsername and YourPassword with your own values.

    Configuring the connection string after deployment

    You can also configure the connection string through the Azure Management Portal in App Services -> select a web app -> Application settings -> Connection strings section. To set the connection string for the web app, change the defaultConnection name to CMSConnectionString.

  3. Make sure that the sessionState mode is set to InProc in the web.config file.

    
    
    
     <sessionState mode="InProc" />
    
    
     

    Use InProc mode if you plan to use one instance of the Web App service. If you want to scale your web app to more instances, you will need to configure the session state differently. See Storing cache and session state data in Azure environment.

  4. Right-click the project folder (CMSApp or CMS) in the Solution Explorer and select Publish (or Publish Web App).

    • Publish dialog opens.
  5. Click Microsoft Azure App Service.

  6. Select the created web app located under the resource group you specified.

  7. Click OK.

  8. Do not modify the default settings.
    Publishing the Web App

  9. Click Publish.

  10. Once the publishing process is finished, Visual Studio automatically opens the base URL of your project in your default browser. Follow the on screen wizard to complete the database installation.

Once everything is set up, we recommend you perform the following configurations to fully customize the web app to suit your needs:

Creating Azure Web Apps in Visual Studio 2015

  1. Open your Kentico project in Visual Studio.

  2. Open the Server Explorer tab (or Database Explorer tab in Express editions of Visual Studio).

  3. Expand the Azure section, right-click App Service, and select Create New App Service… 

    • Create App Service window opens.
  4. On the Hosting tab:

    1. Type the web app name (URL).
    2. Select the Azure subscription under which the Web App will be created.
    3. Select an existing Resource Group or create a new one.
    4. Select an existing App Service plan or create a new one.
      Creating an Azure App Service application in Visual Studio
  5. Switch to the Services tab and create a new SQL Database for the application:

    1. Select an existing or create a new SQL server.
    2. Provide administrative credentials for the server.
    3. Specify a name for the application’s database.
    4. Set Connection String Name to CMSConnectionString.
      Creating an Azure Web App application in Visual Studio
  6. Click Create.

Visual Studio creates the Web App service. Continue with adjusting the configuration of the web.config file of your project, and deploying.

  1. Right-click the created web app and select View settings.

  2. Copy the connection string value and paste it to the web.config file of your project.

    
    
    
     <connectionStrings>
         <add name="CMSConnectionString" connectionString="Data Source=tcp:YourServerName.database.windows.net,1433;Initial Catalog=YourDatabaseName;User Id=YourUsername@YourServerName;Password=YourPassword;" />
     </connectionStrings>
    
    
     

    Replace YourServerNameYourDatabaseName, YourUsername and YourPassword with your own values.

    Configuring the connection string after deployment

    You can also configure the connection string through the Azure Management Portal in App Services -> select a web app -> Application settings -> Connection strings section. To set the connection string for the web app, change the defaultConnection name to CMSConnectionString.

  3. Make sure that the sessionState mode is set to InProc in the web.config file.

    
    
    
     <sessionState mode="InProc" />
    
    
     

    Use InProc mode if you plan to use one instance of the Web App service. If you want to scale your web app to more instances, you will need to configure the session state differently. See Storing cache and session state data in Azure environment.

  4. Right-click the project folder (CMSApp or CMS) in the Solution Explorer and select Publish (or Publish Web App).

    • Publish dialog opens.
  5. Click Microsoft Azure App Service.

  6. Select the created web app from the drop-down list.

  7. Click OK.

  8. Leave the settings as they are.
    Deploying a Kentico project from Visual Studio using Web Deploy

  9. Click Publish.

  10. Once the publishing process is finished, Visual Studio automatically opens the base URL of your project in your default browser. Follow the on screen wizard to complete the database installation.

Once everything is set up, we recommend you perform the following configurations: