forked from flautrup/AzureQlikViewAuthentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
22 lines (17 loc) · 659 Bytes
/
config.js
File metadata and controls
22 lines (17 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var config = {}
//Azure configuration
config.azureConfig = {
realm: 'http://fredriklautrupqlik.onmicrosoft.com/QlikView',
identityProviderUrl: 'https://login.microsoftonline.com/4ffb63b8-94b2-4bc0-8aad-12268b0ca2af/wsfed',
identityMetadata: 'https://login.microsoftonline.com/4ffb63b8-94b2-4bc0-8aad-12268b0ca2af/federationmetadata/2007-06/federationmetadata.xml',
logoutUrl:'http://rd-flp1.qliktech.com:8186/'
};
//Ticket configuration
config.ticketOptions = {
'Host': 'http://rd-flp1.qliktech.com/',
'TryUrl': '/QlikView',
'BackUrl': ''
}
config.userDirectory = 'azure';
config.port='8186';
module.exports = config;