Browse Source
Merge pull request #875 from colinin/fix-url-config
重写url配置
pull/914/head
yx lin
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
22 additions and
3 deletions
-
aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/appsettings.Development.json
|
|
@ -9,10 +9,29 @@ |
|
|
"tag": "IdentityServer.Admin" |
|
|
"tag": "IdentityServer.Admin" |
|
|
}, |
|
|
}, |
|
|
"App": { |
|
|
"App": { |
|
|
"SelfUrl": "http://127.0.0.1:30015/", |
|
|
"ShowPii": true, |
|
|
"StsUrl": "http://127.0.0.1:44385/", |
|
|
|
|
|
"CorsOrigins": "http://127.0.0.1:3100", |
|
|
"CorsOrigins": "http://127.0.0.1:3100", |
|
|
"ShowPii": true |
|
|
"Urls": { |
|
|
|
|
|
"Applications": { |
|
|
|
|
|
"MVC": { |
|
|
|
|
|
"RootUrl": "http://127.0.0.1:44385/", |
|
|
|
|
|
"Urls": { |
|
|
|
|
|
"Abp.Account.EmailConfirm": "Account/EmailConfirm", |
|
|
|
|
|
"Abp.Account.EmailVerifyLogin": "Account/VerifyCode" |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
"STS": { |
|
|
|
|
|
"RootUrl": "http://127.0.0.1:44385/" |
|
|
|
|
|
}, |
|
|
|
|
|
"VueVbenAdmin": { |
|
|
|
|
|
"RootUrl": "http://127.0.0.1:3100/", |
|
|
|
|
|
"Urls": { |
|
|
|
|
|
"Abp.Account.EmailConfirm": "account/email-confirm", |
|
|
|
|
|
"Abp.Account.EmailVerifyLogin": "account/verify-code" |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
"Auditing": { |
|
|
"Auditing": { |
|
|
"AllEntitiesSelector": true |
|
|
"AllEntitiesSelector": true |
|
|
|