You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
RequireHttpsAttribute changes the scheme but not the port, so http://localhost:44380/ gets redirected to https://localhost:44380/, which is invalid because you can't serve both http and https on the same port.
The only way this ever worked was if the original request's host header did not include the port (e.g. localhost rather than localhost:80)