Hi, I'm having the same problem deploying my application using docker, nginx: https://abp.io/support/questions/7180/Deploying-an-ABP-tiered-project-to-mutliple-docker-containers Can you open or share how you solved it? Or need me to create a new issue, thank you!
ok it works, thanks for the reply, but regarding the validity of the token I should use:
PreConfigure<OpenIddictServerBuilder>(builder =>
{
builder
.SetAccessTokenLifetime(TimeSpan.FromDays(1))
.SetIdentityTokenLifetime(TimeSpan.FromDays(1));
});
still using OpenId > Application to set the token lifetime, I don't want frequent logins, I've extended the IdentitySessionCleanupWorker
CleanupPeriod,can you explain? Thanks!