-
I have an ASP.NET Core 8.0 Web API hosted on two IIS applications (app-1 and app-2) under the Default Web Site on a Windows 11 OS. Both IIS applications point to the same physical path ( In the Web API, I have an When accessing I've tried changing the Is there a way to deploy multiple instances of the same web app, each running separately but pointing to the same physical directory, so that each instance correctly triggers its own |
Beta Was this translation helpful? Give feedback.
Hi David,
after several hours spent on the questiuon, I've found the "real" problerm.
For monitoring I use NLog; the problem is that in the second "instance" of WebApi NLog does not write (there's a breaking change on NLog where the default of KeepFileOpen is changed from false to true).
Thanks