I'm reopening the issue. Let me know the recent status of this problem.
happy coding ;)
closing the ticket. if the problem still persists, you can reopen.
but that's not directly related to ABP. it's a certificate that your hosting uses. you can create a console app and create everytime it expires
is it still an active issue?
try generating a new certificate, this topic has been discussed at https://abp.io/support/questions/8266/Generating-CRUD-using-abp-suite-for-module#answer-3a163c11-d8c4-b919-6178-9901f37c352e
when we install abp framework with the command dotnet tool install -g Volo.Abp.Cli
we get error
Tool 'volo.abp.cli' failed to update due to the following: The settings file in the tool's NuGet package is invalid: Settings file 'DotnetToolSettings.xml' was not found in the package. Tool 'volo.abp.cli' failed to install. Contact the tool author for assistance.
To enable file system logging on IIS, you need to grant write permission to the application folder.
Alternatively, you can run the following command:
ICACLS C:\inetpub\wwwroot\mywebapp /grant "IIS AppPool\DefaultAppPool":F
Note: After applying this change, you need to restart the IIS application pool.
My application runs on IIS. How to enable file logging on IIS?
To host your ABP web project on IIS server you need to add configure your web module class as below.
In this solution I added these flags: X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.EphemeralKeySet);
.
PreConfigure<OpenIddictServerBuilder>(serverBuilder =>
{
serverBuilder.AddProductionEncryptionAndSigningCertificate(
"openiddict.pfx",
configuration["AuthServer:CertificatePassPhrase"],
X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.EphemeralKeySet);
});