azure-web-sites

Azure Web App Code Not Updating After Publish Until Restart (VS2017)

我的梦境 提交于 2020-02-20 09:52:11
问题 I am developing a multi-tier web application consisting of multiple Web APIs in an Azure App Service Environment. Recently after upgrading to VS2017 I have noticed that the apps will randomly fail to update after I publish new code (from VS). Remote debuggers will not load correctly and the old code will continue to run after publishing. I am selecting "Remove additional files at destination" in the publish settings. Restarting the apps usually fixes the problem temporarily, though sometimes

Azure Web App Code Not Updating After Publish Until Restart (VS2017)

左心房为你撑大大i 提交于 2020-02-20 09:48:21
问题 I am developing a multi-tier web application consisting of multiple Web APIs in an Azure App Service Environment. Recently after upgrading to VS2017 I have noticed that the apps will randomly fail to update after I publish new code (from VS). Remote debuggers will not load correctly and the old code will continue to run after publishing. I am selecting "Remove additional files at destination" in the publish settings. Restarting the apps usually fixes the problem temporarily, though sometimes

VSTS Deploy to Azure WebApp For Linux

回眸只為那壹抹淺笑 提交于 2020-02-06 06:28:44
问题 Is it possible to deploy an application from VSTS to a WebApp on Linux. My Webapp is a simple ruby app and I'm currently deploying it with the hosted git repo like in the doc: https://docs.microsoft.com/en-us/azure/app-service/containers/quickstart-ruby git remote add azure <Git deployment URL from above> git add -A git commit -m "Initial deployment commit" git push azure master Is there a way to do it using a repo in VSTS? 回答1: First, the Azure App Service Deployment task supports Web App on

VSTS Deploy to Azure WebApp For Linux

余生颓废 提交于 2020-02-06 06:28:39
问题 Is it possible to deploy an application from VSTS to a WebApp on Linux. My Webapp is a simple ruby app and I'm currently deploying it with the hosted git repo like in the doc: https://docs.microsoft.com/en-us/azure/app-service/containers/quickstart-ruby git remote add azure <Git deployment URL from above> git add -A git commit -m "Initial deployment commit" git push azure master Is there a way to do it using a repo in VSTS? 回答1: First, the Azure App Service Deployment task supports Web App on

VSTS Deploy to Azure WebApp For Linux

微笑、不失礼 提交于 2020-02-06 06:28:25
问题 Is it possible to deploy an application from VSTS to a WebApp on Linux. My Webapp is a simple ruby app and I'm currently deploying it with the hosted git repo like in the doc: https://docs.microsoft.com/en-us/azure/app-service/containers/quickstart-ruby git remote add azure <Git deployment URL from above> git add -A git commit -m "Initial deployment commit" git push azure master Is there a way to do it using a repo in VSTS? 回答1: First, the Azure App Service Deployment task supports Web App on

Update Application Settings: Azure Functions

生来就可爱ヽ(ⅴ<●) 提交于 2020-02-04 05:05:50
问题 I am trying to update only one application setting using below request. My setting is getting updated properly, but my all other application settings are vanished. I see only one settings there with the correct updated value which I tried to update. I do not want to loose or change all other application settings. What am I missing here or what is wrong I am doing? I am following the below given article: https://docs.microsoft.com/en-us/rest/api/appservice/webapps/updateapplicationsettings PUT

Docker never runs on Azure - Waiting for response to warmup request for container

一笑奈何 提交于 2020-02-04 00:58:25
问题 I'm trying to deploy a dockerized app on Azure's App Service. I enter all the fields correctly, my image gets pulled, put I keep getting this error until something times out. Waiting for response to warmup request for container -<container name > Elapsed time = 154.673506 sec I did set WEBSITE_PORT 8080 (used by my app) Here is the dockerfile FROM google/dart WORKDIR /app ADD pubspec.* /app/ RUN pub get --no-precompile ADD . /app/ RUN pub get --offline --no-precompile WORKDIR /app EXPOSE 8080

IP address Mismatch between Azure Application Insights and Google Search

只愿长相守 提交于 2020-02-03 10:56:15
问题 Why there is a difference between the IP address reported by Azure Application Insights and standard Google Search (What is my IP)? IP returned by Azure App Insights: xx.xx.xx.0 IP returned by Google Search: xx.xx.xx.242 回答1: Application Insights uses IP to fetch geo location information such as country/region and city and then discards the last octet of the IP for the privacy reasons. If geo location information extracted from IP is not enough for the scenarios you'd like to address and you

How can I set “Https only” for my Azure web app using an ARM template?

前提是你 提交于 2020-02-03 04:15:08
问题 I know how to set Https only manually in the Azure portal. Navigating to My Web Application > Custom domains in the Azure portal opens the Custom domains pane, which has an "Https Only" option. Setting this option to "On" enables the functionality I am looking for. I found how to do this manually on Benjamin Perkins Blog. Unfortunately, it does not contain a description of how to solve the problem in an automated way using ARM templates. How can I set this "Https only" flag in my ARM template

Azure WebApp - Unable to auto-detect the runtime stack of your app

半腔热情 提交于 2020-02-02 01:55:33
问题 I'm trying to create Web App which is just having a Static HTML. I'm following this link https://docs.microsoft.com/en-us/azure/app-service/app-service-web-get-started-html. But when I execute the following command az webapp up --location westeurope --name . Got the error - " Could not auto-detect the runtime stack of your app" . 回答1: I just tried following the steps mentioned in the documentation. Works for me. mkdir quickstart cd quickstart git clone https://github.com/Azure-Samples/html