Sam
Sam

Reputation: 30344

Two web apps under the same Azure Web App

I have an ASP.NET Core SPA app that requires authentication. I also want to have a single static public HTML page for unauthenticated users.

I'd like to set these up like this:

Public HTML page => https://example.com SPA app => https://member.example.com

Can I do this using a single web app on Azure App Service or do I need two separate web apps?

Upvotes: 1

Views: 193

Answers (1)

Bruce Chen
Bruce Chen

Reputation: 18465

Since other communities have provided suggestions, I just summarized the existing approaches and my ideas for you to achieve your purpose:

Upvotes: 0

Related Questions