I need to redirect all HTTP traffic to HTTPS, and I need to do it in IIS layer, rather than in ASP.NET Core MVC.
I know about this and this questions, and I also know about the SSL middleware.
Yet I can't use rewrite module, and as I said, I need to do it in IIS layer.
The solution before ASP.NET Core was easy. I would create an HTTP module, register it in Web.Config and that was it.
Now since IIS's application pool is set to No Managed Code (which is recommended for performance issues) how can I create an HTTP Module?
No Managed Code