Questions tagged [azure-webapps]

Azure App Service Web Apps (or just Web Apps) is a service for hosting web applications, REST APIs, and mobile back-ends. There are many supported languages such as .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on either Windows-based or Linux-based environments.

528 questions
0
votes
2 answers

Unable to attach debugger from VS 2017 to Azure App Service for Web App Bot

I have deployed my Bot Framework v4 app as a Web App Bot to Azure. I can connect to it in Web Chat in the Azure Portal, but it is crashing when I message it via Twilio. I am attempting to debug this, but when I try to attach via Visual Studio's…
Jonathan Brown
  • 3,644
  • 3
  • 25
  • 31
0
votes
1 answer

fatal: Authentication failed for not asking for credentials

I am trying to deploy the React application as Azure web app . (doing this by local git) . when i did run the command git push azure master , it asked me for the username and password . authentication .I Reset the password and when i run that…
Anas Mirza
  • 19
  • 1
  • 7
0
votes
1 answer

Where does the Web App take certificate from if I did not add it?

I created a new Web App on D1 App Service Plan. I just published the application (.Net Core 2.2 app) from Visual Studio. I see that I can access my app with HTTPS and the browser tells me that this is a secured connection (with a padlock). How did…
0
votes
2 answers

How to get email Id of authenticated user?

My azure web app is authenticated by Microsoft Account login. I enabled it through Azure portal with changing authentication/authorization settings of web app.This does not need any change in web app code. And authentication part is working…
0
votes
0 answers

Error -Login failed for user 'XXXX' azure SQL server database

I have a Python 3.6 Django azure web app, i am using Azure sql server database. For few months the user gets the following error: ('28000', "[28000] [Microsoft][ODBC Driver 13 for SQL Server][SQL Server]Login failed for user 'XXXX'. (18456)…
Nir Elbaz
  • 556
  • 4
  • 19
0
votes
1 answer

AppInsights custom metric for autoscaling of azure web apps not supported

I was following this tutorial on autoscaling web apps on on custom metric (https://learn.microsoft.com/en-us/azure/azure-monitor/platform/autoscale-custom-metric) and unfortunately Azure keeps telling me that my custom metric is not supported for…
0
votes
2 answers

Microsoft Graph REST API v1.0 - List personal contacts using application permissions

I've registered a web application in Azure Portal, granted it a Contacts.Read permission, gave it an administrator consent and now trying to list personal contacts of a particular user with Microsoft Graph REST API v1.0 using this application. At…
0
votes
3 answers

Connect to Internal SQL database from Azure Web Application

I'm trying to build a webservice that talks to a SQL database hosted on a server in our internal network. The service is hosted by Azure as a Web App. Is there a good way of doing this? Do I have to use Azure Sql databases, and if I do, is there a…
Josh Bowdish
  • 91
  • 1
  • 15
0
votes
3 answers

How to deploy pgadmin4 docker image on azure web app?

I am unable to run docker image dpage/pgadmin4 on azure web app (Linux) which is available on docker hub. I have installed Docker in my Linux machine and was able to run that docker image locally. Then I created Web app in Azure with options as…
0
votes
1 answer

How to set/modify connection pool from azure web app to azure sql database - Slow App Issue

I have performance issue with my .NET app hosted on an azure web app, connecting to Azure SQL DB with a custom connection string. The more there are users, the more the app is slow. Therefore I am wondering if there are some improvements to perform…
0
votes
1 answer

How to remove .php extension on Azure PHP Web App

How do I remove the .php extension on a Azure PHP Web App ? using at htaccess file with the following, does NOT work RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php Ideas ?
James_Inger
  • 83
  • 2
  • 10
0
votes
1 answer

The Lets Encrypt ACME server was probably unable to reach

I have configured the Let’s Encrypt extensions in to Azure web app. When I trying to generate SSL certs for the custom domains, I’m getting below error: The Lets Encrypt ACME server was probably unable to reach…
TomS
  • 15
  • 5
0
votes
1 answer

Azure Application Key (not AKV) rotation mechanism/guidance

Is there any managed way to periodically (90 days) auto-rotate the keys associated with an app in Azure AD via App Registration? The closest I could find is this one - https://github.com/LockTar/AzureAdApplicationRotator Anyone has any…
0
votes
2 answers

Do i need point to site vpn with azure waf and web app

I have been messing around with Azure trying to get a web app up and running. My plan was to create a WAF and site the web app behind that, each in a seperate subnet and then to use the service endpoint tech to point the web app to a database. I…
0
votes
1 answer

Preserve Web App binaries when doing incremental ARM template provisioning

In my Azure DevOps CI/CD pipeline, I perform incremental resource group upgrade with .NET app deployment to AppService Web App (Stage slot -> prod slot). After running ARM script the second time, Web App content gets deleted on both prod and stage…