Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Filter by
Sorted by
Tagged with
2 votes
2 answers
842 views

Azure web app : can't configure a value for "site_config.0.linux_fx_version"

I try deploy an Azure web app for containers. My terraform code looks like this: resource "azurerm_linux_web_app" "example" { name = "test123-webapp"...
MoonHorse's user avatar
  • 2,526
-3 votes
1 answer
66 views

How can I force all connections to be HTTP (not HTTPS)?

I'm hosting a simple blog and don't want to pay for a certificate to match the domain name. When users go to the blog their browsers are defaulting to HTTPS so they get an ugly certificate name ...
Jan Martin's user avatar
0 votes
1 answer
639 views

Flask Web App + Azure Web App = HTTP pings on port: 8000, failing site start

When I deploy my simple webpage in Azure, I get this error. 2024-08-21T00:42:17.637Z ERROR - Container flashapp-test_0_3f696445 didn't respond to HTTP pings on port: 8000, failing site start. See ...
Todd's user avatar
  • 1,822
0 votes
1 answer
527 views

Simple Gradio App in Docker Container does not work in Azure Container Registrey für Azure Webapp

I try to create a webapp in Azure, which uses a docker image for a python based Gradio app, which I pushed to my Azure Container Registry before. I can't access the webapp via the default domain. I ...
MG1992's user avatar
  • 1
-1 votes
3 answers
117 views

Azure WebApp autoscale [closed]

Do we have an option to create an auto-scale settings for multiple webapps attached to a single app service plan? If yes, please share on how to do this. For Ex: Day 1 - Creating WebAppA attached to ...
Dilly B's user avatar
  • 1,470
-1 votes
1 answer
148 views

How can i deploy key vaults as Environment variables in azure app service

Currently, I'm deploying app service (web app) environment variables from a library in Azure DevOps using ARM templates. Now, I want to deploy Key Vaults as library variables and pass them through ARM ...
Ahsan Ullah Khan's user avatar
0 votes
0 answers
119 views

Bot from Bot Framework Composer deployed on Azure Web App through Azure Bot but when testing web chat on Bot, why is there no response from the bot?

I have created a bot on Bot Framework composer but I had a lot of issues with deployment through 'Create resources' and 'Import resources'. Finally I used github to deploy it on Azure Web App. But now ...
Pranavi's user avatar
1 vote
1 answer
139 views

Error: AADSTS700054: response_type 'id_token' is not enabled for the application

I receive this problem when trying to authenticate myself into my webapp on Google Chrome. It does the same for the mobile versions too. Firstly, Microsoft Edge works perfectly. However, Google Chrome ...
WorkingProgrammer's user avatar
0 votes
1 answer
156 views

Can we Deploy Web Application in Azure OpenAI of Production Level

I have created azure ai search service and used Text split skillset and made index. I also deployed a web Application but have a question that If I want to create to production level, which means that ...
Tanuj Verma's user avatar
0 votes
2 answers
869 views

Azure Web App failing to deploy with Windows Containers

I'm trying to deploy a windows container that holds a simple ASP.NET Core Web App to an azure web app. I've created a container registry, and pushed my docker image to it. However, every time I try to ...
Cameron Cox's user avatar
0 votes
0 answers
474 views

Websocket Connection failing on Deployed Azure web app

I am running a nodeJs server, and serving a ReactApp from it. This is deployed and hosted in an Azure WebApp. I have container running a Django server, hosted on a separate Azure WebApp. I am trying ...
dario's user avatar
  • 1
0 votes
1 answer
91 views

web.config failed to rewrite index.html when a baseURL is added to sub directory in Vue 3 app with Vite

Currently working on a Vue 3 app which deployed using Azure web apps. When I deployed it to the root and used web.config it worked fine, But I need to add a Base URL. For that, I have added the ...
Avish95's user avatar
-1 votes
1 answer
103 views

Azure Linux WebApp Directory password

Have tried the answer in How to: Password Protect Azure App service but in my wordpress-linux-appservice container it is not working. Main issue i found is nginx service is stopped while my wordpress ...
Syed Asif Hashmi's user avatar
0 votes
1 answer
150 views

Can we get small answers in azure ai search index and demo application?

I have a azure ai search service created as cente***dataservice1. In this search service, I have taken basic tier package. There are multiple things that I have done while creating index. First, I ...
Tanuj Verma's user avatar
0 votes
1 answer
345 views

Azure App Service Deployment keeps creating subfolder upon deployment

For some bizarre reason, every time I deploy my web app on Azure, it creates a folder named "b" within the wwwroot folder of the app service, where it then places the artifact zip file. I ...
Dominik H's user avatar
  • 142
0 votes
1 answer
1k views

How to dynamically set VITE_URL environment variable for a React app in Azure Web Apps container?

I have a React application built using Vite. For local development, I have set up an .env file which contains a VITE_URL variable. Here is a brief overview of my setup: Build Tool: Vite Source Control:...
user7886649's user avatar
0 votes
1 answer
250 views

Azure WebApp LogStream shows the same log multiple times and displays all logs as [ERROR], even though they are [INFO] level

Azure WebApp LogStream shows the same log multiple times and displays all logs as [ERROR], even though they are [INFO] level. Following image shows the actual screenshot of the logstream. Logs ...
user25648715's user avatar
0 votes
1 answer
208 views

Issues with Azure web app to reach Azure SQL managed instance

I have an ASP.NET Core 8 Web API, and it needs to reach an Azure SQL managed instance that exists in other resource group. I already peered the virtual network of the managed instance with my web app ...
JCano's user avatar
  • 1
0 votes
1 answer
523 views

Retrieve Azure AD User Group Info Server-Side in Azure Web App

I'm using Azure AD for authentication in an Azure Web App. While I can access user info via the /.auth/me endpoint client-side, I need to obtain user group memberships server-side for security reasons....
harry's user avatar
  • 135
0 votes
1 answer
174 views

Multiple Web Apps with own subdomain, sharing domain, behind Cloudflare

I am writing a script that will create a new Web App in Azure. It will be used by essentially non-technical personnel to create Web Apps on demand, probably a few times a day. One of the script ...
user1147862's user avatar
  • 4,266
1 vote
1 answer
654 views

Azure Web App (Linux) "run from package" not recognising .NET 8 app or able to find startup .dll

I'm deploying to an Azure Web App using an Azure DevOps pipeline. My pipeline includes the steps: - task: DotNetCoreCLI@2 displayName: 'Prepare bundle' inputs: command: 'publish' ...
Blair Harper's user avatar
-3 votes
1 answer
162 views

Deploy artifact to multiple azure web apps using Ansible

I have jar file that i want to deploy to diffrent hosts using ansible so i configured my inventory with the domains of my webapps [webapps] domainofwebapp1.com resource_group=RG web_app=WEBAPPname ...
rewa's user avatar
  • 23
-1 votes
1 answer
645 views

How to deploy node.js project in Azure-devops uisng CI/CD pipeline

I am developing a Node.JS project package.json and app.js (app.js is the main file of the project). I am using postgresql, I've placed all db related configuration under environmental variables. I am ...
Rohan's user avatar
  • 29
0 votes
1 answer
323 views

Azure Web App with custom domain "A" DNS not working

I have a website hosted on an Azure Web App with a custom domain. I can't get the domain to work without the 'www'. So anyone trying to access https://domain.me/ cannot do so. I've googled and found ...
Daniel's user avatar
  • 150
0 votes
1 answer
143 views

Springboot App failing after deployment on Azure App Service

I have springboot app which server react app, on local it is working file but when i deployed this on azure web app with runtime as java 17. It is showing HTTP Status 400 – Bad Request. What can be ...
Sanjay Prasad's user avatar
0 votes
1 answer
381 views

How to deploy simple react app to Azure App Service thorugh VS code

I create a simple create app with npx create-react-app frontend I m trying to deploy this to the Azure App Service, through vs code. It is showing successfully deployed but when trying accessing the ...
Sanjay Prasad's user avatar
0 votes
1 answer
834 views

Cant access deployed HTML/js files in Azure Web App

im very new to Azure so apologise if this is a stupid question. Can I manually deploy a html and vanilla js project to Azure Web App? (Not Azure Static Web App)? I have built my files and deployed to ...
Jakub97's user avatar
  • 59
0 votes
1 answer
181 views

Azure Web App Timeout: Telegram Bot Deployment

I have a Telegram bot built with Python and Program, which is deployed on an Azure Web App. Initially, the bot worked fine, but it stopped responding after some time. The Azure Web App logs indicate ...
Yeshpal Singh's user avatar
0 votes
1 answer
560 views

Attempting to use the Azure Web App 'Identity provider' feature with a web app that uses the Python Azure SDK (azure.identity)

I'm attempting to build a web app for end users to manage their VMs in Azure (giving them access/visibility to VMs based on their existing permissions). I'd like to take advantage of the identity ...
epopisces's user avatar
  • 151
0 votes
1 answer
418 views

Is it possible to setup a sub/second domain for free/testing?

I have a free Azure account. I have setup an app service with an application and can see my website using x.azurewebsites.net I need to trial one more test with the third party component im working ...
KeithViking's user avatar
0 votes
1 answer
250 views

Azure Web App timeout issue with Telegram bot deployed

I have a Telegram bot built with Python, Pyrogram, and deployed on an Azure Web App. Initially, the bot worked fine, but after some time, it stopped responding. The Azure Web App failed to start ...
Yeshpal Singh's user avatar
0 votes
1 answer
224 views

.net8 application won't refresh

I am pushing changes to my .net8 application on Azure using Github Actions. The build and deploy stages are both completed successfully. But there are no changes to the site html of the site. It is as ...
Steve Scott's user avatar
  • 1,542
1 vote
0 answers
377 views

Weaviate v4 can't connect to Docker Container

I am trying to use weaviates v4 python client to connect to my weaviate db instance which is containerized and hosted on azure in a Web App. When using the v3 client connection works perfectly, when I ...
joes00's user avatar
  • 11
2 votes
1 answer
261 views

azure cli - Retrieve and create webjobs for list of webapps in azure using azure CLI

I am trying to do web job creation, if not exist. for single webapp this line of command worked. az webapp deployment source config-zip --resource-group "rg1" --name "webapp1" --...
SKumar's user avatar
  • 61
1 vote
3 answers
834 views

Python app deployment to Azure web app from pipeline not including requirement packages

I have a Python flask app that I want to deploy to an Azure Web App. For some reason the venv that gets created during the build is not keeping the packages that get installed and I don't understand ...
jocke45's user avatar
  • 13
0 votes
1 answer
215 views

Start-AzStorageBlobCopy in powersell

Using powershell, I am trying to get the azure webapp log files and copy them to azure storage account container and then delete $webAppName = "WA01" $resourceGroupName = "RG01" $...
SKumar's user avatar
  • 61
0 votes
1 answer
579 views

we have updated the clientsecret value in app registration as it was expired but the web url is not able to identify the new secret value

We updated the clientsecret value in app registration as it was expired but the url webapp application url is not able to read the new value and throwing below error: Microsoft.IdentityModel.Clients....
vikashk's user avatar
0 votes
1 answer
86 views

Azure WebApp Blazor with IdentityServer4 Couldn't find a valid certificate with subject 'CN=' on the 'CurrentUser\My'

I used self-signed certificate for my IS4. I followed the steps in here. I tried using self-signed certificate and uploading the pfx file. New-SelfSignedCertificate -Subject "CN=certName" -...
Solalem's user avatar
  • 13
0 votes
1 answer
498 views

Connecting Azure SQL Database from Azure Web App

I have an instance of Azure Sql DB, there is no issue when I run the web app locally. The connection to Azure SQL DB is made successfully locally and I get the data as well. Though when I publish the ...
Kunal Chawla's user avatar
0 votes
2 answers
547 views

Where are Azure Web App Configuration Metadata Properties Documented

Background I've been working on updates to Azure Web App settings (of various categories) such as the runtime version, the stack, etc. I've been doing this work in Bicep. These settings seem to be ...
Yousef Imran's user avatar
  • 1,194
0 votes
1 answer
1k views

What are the alternatives for azure keyvault to securely store secrets?

I have an application which accesses Azure Key Vault for retrieving secrets. As per the pricing calculator as number of requests increase there will be a bill from azure. Here I can see that the ...
Jyothish Bhaskaran's user avatar
0 votes
1 answer
216 views

Azure Web App + Database Deployment Error

I am trying to follow along a tutorial from Microsoft (Tutorial: Deploy a PHP, MySQL, and Redis app to Azure App Service) and whenever I try to create and deploy a WebApp in Azure, I always get the ...
Eas's user avatar
  • 1
2 votes
0 answers
369 views

With terraform azure, how to allow update setting 'Client application requirement'?

Hope you can help me with a crazy situation. See below screenshot and i would like to have setting 'Client application requirement' with value 'allow requests only from this application itself' and ...
Paul's user avatar
  • 449
0 votes
1 answer
100 views

Not able to view the logs for hosted WebApp in Azure

I have a ASP.NET Core MVC app in Azure. I have implemented the logs in the MVC where I want to capure informational logs and error log. So when needed developer can view the logs in Azure portal. ...
Faisal's user avatar
  • 119
3 votes
1 answer
2k views

how to deploy flutter in azure app services

Currently working on flutter web gui and handling blob storage and data visualization. The web GUI is running in local host , I want to run the app in azure app services is it possible. If possible ...
sai's user avatar
  • 51
1 vote
2 answers
2k views

Trying to create an Azure Multi-Container App with Two Ports Exposed

In my use case, I am trying to run a multi-container app where each container will have its own port (one of the containers/ports is for uploading files in a separate thread). I could break this up ...
AdamCodes716's user avatar
0 votes
3 answers
2k views

Why do all App Service requests end up in the same instance?

I have configured my App Service Plan to have 4 instances. Within the App Service Plan, I host 1 web application and 1 api (node.js). After waiting an hour or so after setting the instance count to 4 ...
Stefan's user avatar
  • 17.7k
0 votes
0 answers
4k views

Using private endpoint to access a blob storage account in Azure returns 403

As seen below I want to put public network access Disabled on a storage account that contains blobs, then have a C# application on a VM access it via a private endpoint configured for blob access. The ...
DenLilleMand's user avatar
  • 4,670
1 vote
2 answers
3k views

Azure app service deployment failing The subscription 'xxxx-xxxx-xxxx' is not allowed to create or update the serverfarm

I'm having issues with deploying the app service through Azure portal and Terraform. When I try to deploy the service I get this error The subscription 'xxxx-xxxx-xxxx' is not allowed to create or ...
flicko's user avatar
  • 51
0 votes
1 answer
639 views

Azure Web App Persistent Storage - Container Data Overwritten

Attempting to enable persistent storage. However, it keeps deleting what's in my container's folder with "hostingstart.html" Very simple test using apache httpd (following tutorial guidance ...
DaR's user avatar
  • 105

1
2
3 4 5
14