Skip to content
This repository was archived by the owner on Aug 18, 2021. It is now read-only.

Authentication

Gustavo Denis edited this page Oct 31, 2019 · 1 revision
Main > Using Liquid for building your application > Set up configuration per environment > Authentication

Configure the authentication server to use:

##On the back-end:

  "Auth": {
    "Authority": "https://login.microsoftonline.com/tfp/tenant/policy/v2.0/"
  },

Where:

  • [Auth.Authority]: The address of the JWT issuer for using in double check by the microservice.

##On the front-end:

   Auth: {
      Host: 'https://login.microsoftonline.com/foo/oauth2'
   }

Where:

  • [Auth.Host]: The address of the OAuth2 authorization host.

Clone this wiki locally