Hacker News new | ask | show | jobs
by manigandham 3331 days ago
Hosting in IIS with .NET Core is no different than before, it all works the same. Only difference is that IIS won't be running the code but just acting as a simple proxy so you turn off the "Managed Code" setting in the application pool for that site. Than just web-deploy like before and everything works.

All those other settings are settings that were there before.

1 comments

Does restarting the app pool reload the application? What about changing the config file?

Is IIS just configuring http.sys at this point? Are modules still invoked during the request?