Browse Source

fix(settings): fix auth server url

pull/978/head
colin 1 year ago
parent
commit
7746e7cc60
  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