hi
You can set issuer by SetIssuer method
example:
public override void PreConfigureServices(ServiceConfigurationContext context)
{
var hostingEnvironment = context.Services.GetHostingEnvironment();
var configuration = context.Services.GetConfiguration();
PreConfigure<OpenIddictBuilder>(builder =>
{
builder.AddValidation(options =>
{
options.AddAudiences("MyProjectName");
options.UseLocalServer();
options.UseAspNetCore();
});
});
if (!hostingEnvironment.IsDevelopment())
{
PreConfigure<AbpOpenIddictAspNetCoreOptions>(options =>
{
options.AddDevelopmentEncryptionAndSigningCertificate = false;
});
PreConfigure<OpenIddictServerBuilder>(serverBuilder =>
{
serverBuilder.AddProductionEncryptionAndSigningCertificate("openiddict.pfx", "00000000-0000-0000-0000-000000000000");
serverBuilder.SetIssuer(new Uri(configuration["AuthServer:Authority"]!));
});
}
}
hi
Can you share a project to reproduce the problem?https://wetransfer.com/
liming.ma@volosoft.com
Thanks
hi
What is your SQL Server version?
Can you try using a new SQL Server instance? eg docker
this error is happening intermitent on the system when I am trying to save a big json throw a post,
You can do this in a background job.
https://docs.abp.io/en/abp/latest/Background-Jobs
Good news.
hi
The index,html will update automatically.
Can you share a simple project to reproduce? https://wetransfer.com/
Thanks
liming.ma@volosoft.com
hi
Can you try to run abp bundle command to generate the global.js and global.css files?