Activities of "alper"

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.

Answer

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);
 });

I reopened the question

I wrote an article about Background Jobs and Background Workers https://abp.io/community/articles/abp-framework-background-jobs-vs-background-workers-when-to-use-which-t98pzjv6

Showing 51 to 60 of 1950 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 07, 2025, 08:20