-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.json
58 lines (58 loc) · 1.56 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"port": 3000,
"pathToContent": "/src/",
"mode": "production",
"controlPlane": {
"url": "https://127.0.0.1:9443/api/am/devportal/v3",
"disableCertValidation": true,
"pathToCertificate": "../api-developer-portal/conf/security/client-truststore.pem"
},
"db": {
"username": "postgres",
"password": "postgres",
"database": "devportal",
"host": "localhost",
"port": 5432,
"dialect": "postgres"
},
"providerURL": {
"AWS": "https://aws.amazon.com"
},
"defaultAuth": {
"users": [
{
"username": "admin",
"password": "admin",
"roles": [
"admin"
],
"orgClaimName": "ACME",
"organizationIdentifier": "ACME"
}
]
},
"identityProvider": {
"name": "IS",
"issuer": "https://127.0.0.1:9443/oauth2/token",
"authorizationURL": "https://localhost:9443/oauth2/authorize",
"tokenURL": "https://127.0.0.1:9443/oauth2/token",
"userInfoURL": "https://localhost:9443/oauth2/userinfo",
"clientId": "",
"callbackURL": "http://localhost:3000/ACME/callback",
"scope": "openid profile",
"signUpURL": "",
"logoutURL": "https://localhost:9443/oidc/logout",
"logoutRedirectURI": "http://localhost:3000/ACME",
"certificate": "",
"jwksURL": "https://localhost:9443/oauth2/jwks"
},
"disableTLS": true,
"roleClaim": "roles",
"orgIDClaim": "organizationID",
"groupsClaim": "groups",
"adminRole": "admin",
"subscriberRole": "Internal/subscriber",
"superAdminRole": "superAdmin",
"authenticatedPages": [],
"authorizedPages": []
}