Can I have Azure File Storage with Web App Service?
I’m new to Azure, using a free 30 day trial.
I’m new to Azure, using a free 30 day trial.
My question is, can someone see your full URL web API, that you developed when a user makes a request with that URL get/post/delete/put ? Can they see in network traffic your Web APIs URL that are being called?
Example of URL: https://webapiserver.azure.com/something/something/Username/password
Can you actually see these content when the request is being made from a user, lets say i am developing an Android application, and inside that application, i make these kind of API request, and i worrying about the security, if an ‘attacker’ can see the content..
Large file download code found running on IIS.
I’ve created a template Blazor Server Side project in VS with single tenant Azure AD authentication. Running the app on localhost i’m able to log in fine, but unable to log in when the app is published as Azure Web app. Error: AADSTS50011: The reply URL specified in the request does not match the reply URLs configured for the application: ‘app client id here’.
I’ve noticed that although I’m able to successfully deploy my web app (ASP.NET) to Azure using web publish in Visual Studio. I’m also able to successfully deploy individual files to the server directory, by right clicking on the file in the solution explorer and clicking publish.
Azure websites have a default “site URL” , something like mysite.azurewebsites.ne(which i don’t have, I only have the xyz.com). Is it possible to get this URL just by knowing the address aka custom domain (xyz.com) , keep in mind that im not the admin of the site and all I have is normal access
I have created an ASP.NET Core 3.1 application. The application is deployed to a Azure App Service. In the project I make use of logging, but the problem is that I can’t view the logs on Azure via Log Stream.
I have configured the Application Initialization for a Web App running on Azure, the reason for that is to improve the “warm up”, because I have some issues with Scale-out, the instance is not ready for the connection then I got some servers errors.
There is a good doc from Microsoft about that:
https://docs.microsoft.com/en-us/iis/get-started/whats-new-in-iis-8/iis-80-application-initialization
I have an ASP.NET 5 solution with a website and several project libraries. I’m using MVC 6 and Entity Framework 7. Locally the app is working fine and until today it was working also on Azure deployed as an Azure Website.
I followed this article https://azure.microsoft.com/en-us/blog/announcing-app-service-authentication-authorization/ to set up Azure authentication for my MVC app. First I turned on Azure AD provider. In the Authentication / Authorization settings, I selected “Allow request(no Action)” for “Action to take when request is not authenticated” because I only need users to login for certain controller actions.