azure-web-sites

How to stop running multiple application insights for Azure Web App?

给你一囗甜甜゛ 提交于 2019-12-04 10:23:34
We have enabled Application Insights for an Azure Web App. The following highlighted Application Insights automatically added to the app service even after deleted manually. Is there anyway to permanently disable/delete this? NOTE: We have configured Scale Out (Max: 10 instances) for the App Service. It seems that the old extension was not properly removed when you enabled the new experience. Even though the App Service doesn't show the "Microsoft.ApplicationInsights.AzureWebSites" extension as being installed, the extension is still there and periodically writes ApplicationInsightsProfiler2.

How does azure make connection to the hybrid connection manager?

自古美人都是妖i 提交于 2019-12-04 09:50:40
As per hybrid communication documentation https://docs.microsoft.com/en-us/azure/biztalk-services/integration-hybrid-connection-overview hybrid connections does not require any inbound ports to be opened in firewall. But without an inbound port how does the communication happen with on premise resource from outside world? I understand the Hybrid connection manager (HCM) acts as a bridge for communication, but how does HCM, which resides in corporate network receive messages from Azure? But without an inbound port how does the communication happen with on premise resource from outside world?

Migrate Azure Web Site to Azure Cloud Service

时光怂恿深爱的人放手 提交于 2019-12-04 09:14:25
问题 I have a project and I'm planning to start the web app as an Azure Web Site and then migrate it to an Azure Cloud Service (also called Hosted Service) if it is needed as a scale strategy. The decision is because I read that Azure Web Sites are more simple and fast to develop with almost no Azure-specific configurations or code. So starting fast and simple is a good starting point for the project. But, is that a good starting point for you? Is migrating an Azure Web Site to an Azure Cloud

Rewrite Rule to IIS for HTTPS redirect to HTTP causes null HttpContext.Request.ContentType

心已入冬 提交于 2019-12-04 06:38:43
问题 I am using HTTPS redirect site extension for Azure which has an applicationhost.xdt like this: <?xml version="1.0"?> <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <location path="%XDT_SITENAME%" xdt:Transform="InsertIfMissing" xdt:Locator="Match(path)"> <system.webServer xdt:Transform="InsertIfMissing"> <rewrite xdt:Transform="InsertIfMissing"> <rules xdt:Transform="InsertIfMissing"> <rule name="redirect HTTP to HTTPS" enabled="true" stopProcessing="true" xdt

Set document root in Zend Framework 1.12.x application in Azure Web Sites

我的梦境 提交于 2019-12-04 06:25:23
问题 I have a problem setting the document root for a Zend Framework application that I want to run in Azure. Now I'm testing Web Sites, Cloud Service and VM's to deploy my work. Deploying with Webmatrix works fine, but I need to set the document root of IIS to a subfolder. - application - htdocs => Webroot with Web.config - libs How do I set this? With a second Web.config outside of htdocs Redirecting inside? Tried that, but IIS doesn't seem to like it (500err). The only thing I found was

Disable pool recycling on Azure Websites

非 Y 不嫁゛ 提交于 2019-12-04 05:58:44
I have a website deployed on Azure Websites and I want to disable pool recycling. If you have a regular IIS installation, you can disable this in application pool advanced settings by setting "Recycling -> Disable overlapped recycle" to true. Yet I can't seem to find this option in the azure management console, nor do I find any information on this subject online. Any pointers would be greatly appreciated! Thanks a lot Puneet Gupta for pointing me in the right direction! I couldn't use the exact solution, but it set me on the right path. Here's how I solved this: 1) Get your hands on the

Angular 2 configuration issues with Azure Slot deployments

£可爱£侵袭症+ 提交于 2019-12-04 05:35:45
问题 I'm having a problem with Angular environment variables and Azure Slots We want to use an app service providing static Angular files and we also want to use Azure slots to make our deployments safer. The reasons we want to use slots are: Ensure that code works in the production environment before making it fully available to everyone Reduce downtime to almost nil as there is no build being deployed during the "go-live" phase Our Angular site only serving up static files means that slot

Multiple Jobs Deployment in Visual Studio Team Services

霸气de小男生 提交于 2019-12-04 05:13:39
问题 I have a VS solution with multiple projects, each project is an independent WebJob which I am hosting in a Single AppServices. I am trying to automate this to Continuous deployment.What would be the best strategy to deploy only job in the solution which is changed? Is there a way to find out the project which is changed as part of the merge to CI? We are using git and this solution is in a single repository. We are using azure-webjobsdk for the projects. 回答1: You can follow below steps to

Which version of node.js is running on Windows Azure Web Sites?

血红的双手。 提交于 2019-12-04 05:13:20
Which version of node.js is actually running on Windows Azure Web Sites? There are many versions of node preinstalled on the Windows Azure Web Sites servers and you can choose which one gets used by specifying your minimum required version in your package.json file. Instructions here . The versions available change on a regular basis, but to give you a sense, the currently available versions (as of November 1, 2013) is: 0.6.17, 0.6.20, 0.8.2, 0.8.19, 0.8.26, 0.10.5, 0.10.18, 0.10.21. It turns out to be, at the moment of writing: v0.6.20 . Quickly found out via the following script: var http =

How do I get the details of an Error 500 for an Azure Web App?

让人想犯罪 __ 提交于 2019-12-04 04:35:40
I have an MVC 6 site that has been deployed as an Azure Web App. I have enabled all tracing / diagnostic options in Visual Studio using Server Explorer. I am trying to do remote debugging, but I am only seeing an Error 500 on my browser, and not finding any information (or triggering an error breakpoint) on where exactly the error occurred. I can't find any error trace on the file logs that I get from Azure. How should I troubleshoot Error 500's in an Azure Web App? Adding "CustomErrors": {"Mode": "Off"} to config.json didn't work. For MVC 6 you need to add a web.config file to the wwwroot