Browse Source
Merge pull request #13464 from abpframework/environment.prod.ts
Update environment.prod.ts
pull/13465/head
liangshiwei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
4 deletions
-
modules/openiddict/app/angular/src/environments/environment.prod.ts
|
|
|
@ -10,16 +10,17 @@ export const environment = { |
|
|
|
logoUrl: '', |
|
|
|
}, |
|
|
|
oAuthConfig: { |
|
|
|
issuer: 'https://localhost:44333', |
|
|
|
issuer: 'https://localhost:44301/', |
|
|
|
redirectUri: baseUrl, |
|
|
|
clientId: 'Angular_App', |
|
|
|
clientId: 'AbpApp', |
|
|
|
dummyClientSecret: '1q2w3e*', |
|
|
|
responseType: 'code', |
|
|
|
scope: 'offline_access Angular', |
|
|
|
scope: 'offline_access AbpAPI', |
|
|
|
requireHttps: true |
|
|
|
}, |
|
|
|
apis: { |
|
|
|
default: { |
|
|
|
url: 'https://localhost:44333', |
|
|
|
url: 'https://localhost:44301', |
|
|
|
rootNamespace: 'OpenIddict.Demo.Client.Angular', |
|
|
|
}, |
|
|
|
}, |
|
|
|
|