Browse Source

Merge pull request #978 from colinin/fix-auth-server-url

fix(settings): fix auth server url
pull/988/head
yx lin 1 year ago
committed by GitHub
parent
commit
f0348aecf5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 26
      aspnet-core/services/LY.MicroService.Applications.Single/appsettings.Development.json

26
aspnet-core/services/LY.MicroService.Applications.Single/appsettings.Development.json

@ -1,6 +1,28 @@
{
"App": {
"CorsOrigins": "http://127.0.0.1:3100"
"ShowPii": true,
"SelfUrl": "http://127.0.0.1:30001/",
"CorsOrigins": "http://127.0.0.1:3100,http://127.0.0.1:30001",
"Urls": {
"Applications": {
"MVC": {
"RootUrl": "http://127.0.0.1:30001/",
"Urls": {
"Abp.Account.EmailConfirm": "Account/EmailConfirm",
"Abp.Account.EmailVerifyLogin": "Account/VerifyCode"
}
},
"STS": {
"RootUrl": "http://127.0.0.1:30001/"
},
"VueVbenAdmin": {
"RootUrl": "http://127.0.0.1:3100",
"Urls": {
"Abp.Account.EmailConfirm": "account/email-confirm"
}
}
}
}
},
"Auditing": {
"AllEntitiesSelector": true
@ -106,7 +128,7 @@
},
"AuthServer": {
"UseOpenIddict": true,
"Authority": "http://127.0.0.1:30000/",
"Authority": "http://127.0.0.1:30001/",
"ApiName": "lingyun-abp-application",
"SwaggerClientId": "InternalServiceClient",
"SwaggerClientSecret": "1q2w3E*"

Loading…
Cancel
Save