The Azure Quickstart templates are currently available in English
This template facilitates the deployment of resources required to host Kentico Xperience environments in Microsoft Azure.
Bu Azure Resource Manager (ARM) şablonu Microsoft tarafından değil bir topluluk üyesi tarafından oluşturulmuştur. Her bir ARM şablonu size Microsoft tarafından değil, bir lisans sözleşmesi altında sahibi tarafından lisanslanmıştır. Microsoft, topluluk üyeleri tarafından sağlanan ve lisanslanan ARM şablonlarından sorumlu değildir ve güvenlik, uyumluluk ve performans denetimi yapmaz. Topluluk ARM şablonları herhangi bir Microsoft destek programı veya hizmeti altında desteklenmez ve herhangi bir garanti olmaksızın OLDUĞU GİBİ kullanıma sunulur.
Parametreler
Parametre Adı | Açıklama |
---|---|
hostingPlanLivesite | Name of the App Service hosting plan for the Web App used to host the live site application. |
pricingTierLivesite | Pricing tier of the created App Service hosting plan for the live site application. See the Microsoft Azure App Service documentation for details on pricing. |
livesiteName | Name of the Web App hosting the live site application. By default, the deployed Web App will be available at livesiteName.azurewebsites.net. Keep in mind that the name must be unique across the entire Azure environment, not only within your hosting plan. |
hostingPlanAdministration | Name of the App Service hosting plan for the Web App used to host the Kentico Xperience administration application. |
pricingTierAdministration | Pricing tier of the created App Service hosting plan for the Kentico Xperience administration project. See the Microsoft Azure App Service documentation for details on pricing. |
administrationSiteName | Name of the Web App hosting the Kentico Xperience administration project. By default, the deployed Web App will be available at AdministrationSiteName.azurewebsites.net. Keep in mind that the name must be unique across the entire Azure environment, not only within your hosting plan. |
sqlAdministratorLogin | Login for the Azure SQL server administrator. |
sqlAdministratorPassword | Password for the Azure SQL server administrator account. The password is case-sensitive and may contain lower case, upper case, numbers and special characters. The default Azure password complexity rules: minimum length of 8 characters, minimum of 1 uppercase character, minimum of 1 lowercase character, minimum of 1 number. Moreover, the password cannot contain the account name of the user account performing the deployment. The password can be up to 128 characters long. |
sqlServerName | Server name of the deployed Azure SQL server. The server name can contain only lowercase letters, numbers, and '-', but can't start or end with '-' or have more than 63 characters. Keep in mind that the server name must be unique across the entire Azure environment, not only within your hosting plan. |
connectionStringDatabaseName | Database name substituted in the 'Initial Catalog' parameter of the administration and website Web App connection strings. If left empty, the Web Apps are deployed without preconfigured connection strings. |
location | The geographical location to which the resources will be deployed. |
Şablonu kullanın
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure PowerShell'i yükleme ve yapılandırma
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/kentico-xperience-environment/azuredeploy.json
Komut satırı
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure Platformlar Arası Komut Satırı Arabirimini Yükleme ve Yapılandırma
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/kentico-xperience-environment/azuredeploy.json