Dash app in docker container

Junaid Qazi 6 Reputation points
2020-11-01T17:01:58.88+00:00

Hi,
I want to deploy my dockerized dash app in a way that someone can only view using username password.
Is it possible to restrict the app this way?

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,114 questions
{count} votes

1 answer

Sort by: Most helpful
  1. ajkuma 23,386 Reputation points Microsoft Employee
    2020-11-30T21:03:30.537+00:00

    @Anonymous , We have been looking for your confirmation on the scenario/requirement you're attempting to accomplish.

    As Ryan mentioned, you can implement basic auth.

    If you're trying to understand/implement the ability for users to access App Service WebApp only upon authentication, it is possible. Azure App Service does provide built-in authentication and authorization support, so you can sign in users and access data by writing minimal or no code in your web app.

    However, On Container/App Service - The authentication and authorization module runs in a separate container, isolated from your application code. Using what's known as the Ambassador pattern, it interacts with the incoming traffic to perform similar functionality as on Windows. Because it does not run in-process, no direct integration with specific language frameworks is possible; however, the relevant information that your app needs is passed through using request headers as explained in this document.

    Hope this helps! Kindly let us know we will be happy to assist you further.

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    To benefit the community, find the right answers, please do mark the post which was helpful by clicking on ‘Accept Answer’ & ‘Up-Vote’.

    0 comments No comments