I developed an Angular 8 App with NgxAdmin and hosted it as Azure Web App. It uses Azure AD Oauth2 Authentication with the help of NbAuthModule. Everything works fine. Now I tried to host the same SPA on an Azure Storage Account. I added the new callback url to the Azure Ad App Registration and updated the redirectUri in the NbOAuth2AuthStrategy.setup-method.
When I call the base url of the static app (https://<projectname>.z6.web.core.windows.net
), it correctly redirects to https://<projectname>.z6.web.core.windows.net/auth/login?return=%2Fpages%2Fdashboard
.
I can login via Azure Ad. Then the url changes to https://<projectname>.z6.web.core.windows.net/auth/callback#access_token=eyJ0eXAiOiJKV1Q...
and there should be a redirect to the previously defined return-url /pages/dashboard
. But all I get is a 404 on the callback link.
Additionally, if I try to call e.g. https://<projectname>.z6.web.core.windows.net/auth/login
directly, it returns a 404 (if I do the same with the web app, the login component is displayed).
What am I doing wrong? Are there additional changes to made in my Angular code to make the routing run in Azure Storage Account?