azure-app-service-plans

Is there a way to try out Windows Azure?

懵懂的女人 提交于 2019-12-11 00:26:26
问题 I've looked at the Introductory Special Offer, but you still need to provide a credit card because when you go over your limits, you do have to pay. Man, I'm just a developer and I would like to try some things out with Azure Cloud. How can you evaluate a product if you can't try it out... Is there a way to get a sort of developer trial? 回答1: I totally agree with your point. However if you want to just play around with the SDK for development, you could always use the Development Fabric

Move Azure website between App Service Plans

◇◆丶佛笑我妖孽 提交于 2019-12-08 17:50:43
问题 Is it possible to move an Azure Website to a different (or new) App Service Plan ? I have already tried both the old and new portals but cannot find the options for this. 回答1: The option " Change App Service plan " has been moved to the APP SERVICE PLAN menu. 回答2: The original accepted answer is more than a year old. In Azure world, that's an eternity. The "Change App Plan" button in the Azure Portal is no longer present it appears (as of 2016-06-17), so I'm throwing in the Powershell command

Microsoft Azure App Service Storage

偶尔善良 提交于 2019-12-08 03:57:52
问题 I have a doubt for purchase a microsoft azure app service to host my app. I have already tested the free profile and i am concerned to switch to a basic profile. That's my question. I have seen on this table on azure website here which i'll have 10GB of disk space for my application files. When i went on price calculator i see this Well my question is: Why here i see 10GB of temporary storage? will i lose my application files located in the wwwroot folder anytime? 回答1: will i lose my

Getting the azure app service slot name on startup?

十年热恋 提交于 2019-12-06 11:09:02
How can I get the name of the slot (production or staging) of my app service when the asp.net core process starts. The HTTP_HOST environment variable doesn't appear to be set on startup and I have no http request to inspect. If we want to get the host name, you could use the environment variable WEBSITE_HOSTNAME to do that. var hostName = Environment.GetEnvironmentVariable("WEBSITE_HOSTNAME"); If you run it on the slot environment then you will get the value youwebsiteName-slotName.azurewebsites.net . Or if you run it on the production environment you will get the value youwebsiteName

How Scale-out work in Azure App Services

こ雲淡風輕ζ 提交于 2019-12-04 22:51:53
I am trying to wrap my head around the concept of Azure App Service plan and Azure App Services, with no luck. My understanding is that an App Service Plan defines the capacity and the pricing, all apps assigned to a specific App Service plan will share the same resources, is that right? If that is right, then what is the benefit of the scaling-out? If the scale out will create more instances of the same app which at the end will be hosted on the same App Service Plan (sharing the same resources)? I read almost all the official and non-official documentation about Azure App Service plan and

Deploy two Azure App Services to the same App Service Plan using idempotent ARM TEMPLATE

牧云@^-^@ 提交于 2019-12-04 15:35:01
PROBLEM How to deploy two different Azure App Services to the same App Service plan when using VSTS idempotent continuous integration / continuous deployment processes. ENVIRONMENT I have written two ARM TEMPLATES each of which deploy a web application to Azure App Service. In order to deploy an App Service an Service Plan must be created first. The ARM TEMPLATES currently create a unique Service Plan each for each Web App. I am using VSTS Release Definitions to deploy on each successful VSTS build. i.e releases are designed to be idempotent. Currently each web app has its own Resource Group

Preventing staging site restart during a swap

你说的曾经没有我的故事 提交于 2019-12-04 03:20:29
问题 From how I understand it, the only reason a staging site would require restart is if there exists app settings or connection strings configured as slot settings. Although this doesn't always seem to be true. One of our applications will restart regardless. I have used Powershell cmdlets to be sure that there are no slot settings "hidden" from the Portal (because apparently this is a thing). What other factors can determine whether the staging site will be restarted during a swap? (I posted

How to restart Azure App Service Instance

强颜欢笑 提交于 2019-12-04 00:09:40
I have an Azure App Service that contains 1 Web App with 1 slot. I have 2 instances assigned to the App Service. This week, the App Service shows about 60% CPU usage, and its usually about 10-15%. Upon further investigation, it looks like 1 of the two instances is maxed out. When opening up the Site Metrics per Instance, I can see that HTTP Response times are in the 1000s of milliseconds for one instance, and less than 200ms for the other. I have tried restarting the W3P process on the offending instance, but that doesn't seem to help. I have also tried scaling up to additional instances. The

How to deploy a solution with two projects to Azure App Service?

╄→尐↘猪︶ㄣ 提交于 2019-12-03 12:29:39
问题 I am trying to minimize the cost of running my web app in Azure App Service. I have a Visual Studio 2017 solution with two Web Projects: Web and API (both .NET Core). The entire solution is part of a single GitHub Repo. Before adding the API project, the build and deployment to Azure App Service was automated. My goal is to deploy both projects under the same App Service (to minimize cost) with two subdomains (e.g. www.example.com and api.example.com) and keep everything automated. Is this

API to add properties to Azure Webapp Application settings

半世苍凉 提交于 2019-12-02 00:24:34
问题 I have one web app running on a Azure appservice plan. The web app has a lot of settings defined in Application settings of the Web App. Now I want to replicate that web app with all its Application settings. I got the REST API to list down all the settings available for any web app (/api/settings). Although there is a POST call to add/update the settings , But it is not updating Application settings. Is there any REST API to add/update the Application settings of Azure web app ? Thanks,