Azure App service

Boopathy, Elango 106 Reputation points
2020-05-17T08:20:34.81+00:00

Hi Team,

Front end is an Angular application hosted on Azure App service. Backend is a springboot application hosted on Tomcat Azure Linux VM and listening on port 8XXX and its configured with a SSL (a private certificate issued by the customer). We can access the GET api call from client browser since it has certificates installed to trust.

Now we have to achieve the same in Angular to access the Backend API. Not sure how to trust private certificates using Angular code.

Whenever we try to access the backend api, we are getting timeout. Not able to reach the endpoint. What could be the issue ? Is there something i can do outside angular code to trust certificates? I mean appservice provides any option to configure and access the certs.

Thanks.
Elango Boopathy.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,863 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sam Cogan 10,157 Reputation points MVP
    2020-05-18T08:42:30.31+00:00

    Unless you are using the App Service Environment (ASE), then it is not possible to upload your own certificate public keys to the trusted root store of the web app.
    To connect to this service using a standard Web App you will need to use a certificate from a public provider that is already trusted.

    0 comments No comments