Hi everyone, I am trying to login multitenant using subdomain. But when it tries to login (https://ExampleTenancyName.localhost:44301), it gives an "Invalid user name or password" error. I think tenant id value is not gone.
The changes I made to the code are as follows:
Demo.Web.Host / appsettings.json:
"App": { "ServerRootAddress": "https://{TENANCY_NAME}.localhost:44301/", "ClientRootAddress": "http://{TENANCY_NAME}.localhost:4200/", "CorsOrigins": "http://*.mycompany.com,http://*.localhost:4200,http://localhost:9876", "SwaggerEndPoint": "/swagger/v1/swagger.json", "AllowAnonymousSignalRConnection": "true" },
Angular / appconfig.json:
"remoteServiceBaseUrl": "https://localhost:44301", "appBaseUrl": "http://{TENANCY_NAME}.localhost:4200",
Angular / angular.json:
"serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { "browserTarget": "abp-zero-template:build", "disableHostCheck": true },