azure-web-app-service

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

Type into console core azure app and give access to that app to end users

旧巷老猫 提交于 2020-02-05 04:06:23
问题 I deployed my console net core app to azure. How can i write something to my published console app bcause my console app takes some values from user and prints out, i cannot find link to this deployed application and then how to give access to end user to that console app? 回答1: Per my understanding, you published a .net core console app as Azure Webjobs, and you are looking for a webhook so that you can let your users access this console app. You also need to know how to pass params to it via

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 App Service Configuration Settings for HTTPModule section

喜欢而已 提交于 2020-01-25 10:12:13
问题 With an Azure App Service, there is the possibility to overwrite setting values for Application Settings and Connection strings. In the web.config, we have a custom HttpModule (in particular it is HttpAuthModule) which can have its own key/value settings. I suppose the same could occur for any config section such as logging frameworks etc. How can we overwrite these keys (that live outside of appSetting section) in Azure App Services? We want a different value for different environments

How ti fix the “You do not have permission to view this directory or page.” issue in Azure web app services?

可紊 提交于 2020-01-25 09:51:26
问题 I have a simple web app which if I deploy to Azure through Intelij (Using Azure App plugin ) the app works perfectly. But when I tried deploying using Jenkins the log says deployment successful , but when I try to navigate to the site it says "You do not have permission to view this directory or page." Am I missing anything ? As per my understanding as My project is working fine when deployed using Intelij, but not working through Jenkins, so the problem will be in my Jenkins Job. Here is the

Azure web apps: “You do not have permission to view this directory or page” error

大城市里の小女人 提交于 2020-01-25 09:41:06
问题 I am trying to deploy my nodejs application on azure and I got this error : “You do not have permission to view this directory or page” I followed this tutorial from Azure web site. To be sure Itried again but with the hello wold example given in the tutorial. However, when I deploy the zip, I got a successful deployment but when I try to access to my web site I get the same error. I searched on internet about this error and I tried to follow the response from the following links link1, link2

Is it possible to open port in Azure Linux Web App

拟墨画扇 提交于 2020-01-25 07:50:10
问题 I have a framework which connects to Virtual Machine through the specific port. But I want to make WebApp Linux on Azure with this code. I used image docker file where I exposed necessary port. If it’s enough to open the port? By the way in Azure portal tab Networking is always grey. 回答1: Currently, web app on Linux does not support Networking . It is only supported by windows web app. This is the feedback of web app, you could post your idea to help azure improve it. 来源: https:/

Azure DevOps Doesn't Publish Web App from ZIP Deploy, Runs It as Read-Only ZIP Package Instead

☆樱花仙子☆ 提交于 2020-01-25 06:55:26
问题 We have an Azure DevOps Pipeline that runs our application as ZIP package https://docs.microsoft.com/en-us/azure/app-service/deploy-run-package as opposed to ZIP Deploy. So we are not able to SFTP into our Web App and change something. Why does the Pipeline runs our application as ZIP package and how can we change this? This is the Pipeline: trigger: none pool: vmImage: 'windows-latest' steps: - task: NuGetToolInstaller@1 - task: NuGetCommand@2 inputs: restoreSolution: 'Solution1.sln' - task: