Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Cofiguration for azure-config.js (required for Active Directory Authentication)

  • copy azure-config.example and rename file to azure-config.js.

    Code Block
    const config = {
        path: '/login',
        clientID: '87f210d2-d3af-43dd-ba98-07adaff3e791',
        tenant: '24981a26-eb7a-4f13-95d4-66827d36dec8',
        authorityUrl: 'https://login.windows.net/',
        resource: '00000002-0000-0000-c000-000000000000',
        clientSecret: 'xxxxxxxxxxxxxx',
        identityMetadata: 'https://login.microsoftonline.com/24981a26-eb7a-4f13-95d4-66827d36dec8/.well-known/openid-configuration',
        responseType: 'code',
        responseMode: 'form_post', 
        redirectUrl: 'https://msg-test.akiomacloud.de/auth/azure/openid/return', 
        allowHttpForRedirectUrl: false,
        validateIssuer: false,
        issuer: null,
        passReqToCallback: false,
        useCookieInsteadOfSession: false,
        cookieEncryptionKeys: [ 
        ],
        loggingLevel: 'warn',
        loggingNoPII: true,
        nonceLifetime: null,
        nonceMaxAmount: 5,
        clockSkew: null
    };
    
    

Options for the Active Directory configuration file

...