Can you share your Module configuration?
Share related application logs please. It is found under *Logs *folder as logs.txt file. If you are running on containers, you can also retry the process and check the container/pod logs.
If you have it authorized, it should be redirecting back to login page already. Can you share a video, or gif of the process that show the problem you are having with?
Hello, The Forms module is a sample of how you can implement Vue2 to server-side rendering so that you can examine the bundling, component creations, etc.
If you are looking for a template that implements all the commercial modules using Vue like the Angular template, no; we do not have an official Vue template like that.
Do you use a tiered application template? Is Redis up and running?
If you set your default application's home/index page with [Authorize]
, you will automatically redirected back to login page.
I think it's the redirect_uri=http://mos-st-web/signin-oidc should be https://mos-st-web/signin-oidc
Yes, you are right. Redirect URI must match with OpenId Connect options and the one saved in the database when creating the client.
You can update it from the database manually or from the IdentityServerDataSeeder and re-create DB and re-seed.
You don't need to add extra services after ProductService. Even ProductService shouldn't be there since they are point to default service endpoint which is localhost:44325.
To create static proxies, you can use the command like:
abp generate-proxy -t ng -m productService -u https://localhost:44361
-m indicates the microservice name and -u indicates the URL of the microservice is running at.
This command was not working properly for angular applications, it has been fixed.
I don't think it is about connecting to the database server. It looks like there is no database to connect to.
Update connection strings on the DbMigrator appsettings and run it. It will create the database and seed the necessary data. Update connection strings on HttpApi.Host appsettings and run your application. Share your application logs if you are having problems again.