Hi I am trying to host a multiple .net core 3 application using the same application pool in IIS But were receiving ACME 500 error on the other application and only first one hosted is working Does anyone know whats the reason behind this?
Note: We tried reducing the module version in webconfig "AspNetCoreModuleV2" to "AspNetCoreModule" and the others application worked but I dont want to use this solution.
One app per pool is the design limitation of ASP.NET Core module in-process hosting mode.
Sharing an app pool among apps isn't supported. Use one app pool per app.
You either accept it, or switch to out-of-process mode (actually you did that by using the version 1 of ASP.NET Core module).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With