App Crash with Wild Card SSL #1472
-
What kind of configuration can you put in to place to prevent wildcard ssl redirects if the website goes down. Like if I was using IIS the bindings still catch even if the app goes down, but with YARP it seems that it can fall through and then with HSTS enabled you might have a permanent redirect to a bad DNS. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
What does that mean? It sounds like you're using Kestrel as the server with YARP, and want to compare its binding behavior to IIS? When a Kestrel server instance goes down it stops responding on the IP, you never even reach the TLS part of the handshake. What the client does next is up to them, they'll either retry, or try a backup IP, but even a backup IP shouldn't affect HSTS. |
Beta Was this translation helpful? Give feedback.
-
I have a few more details finally. So there is a default domain binded to the IP of the server that's needed for some kind of security scan use-case. |
Beta Was this translation helpful? Give feedback.
What does that mean? It sounds like you're using Kestrel as the server with YARP, and want to compare its binding behavior to IIS?
When a Kestrel server instance goes down it stops responding on the IP, you never even reach the TLS part of the handshake. What the client does next is up to them, they'll either retry, or try a backup IP, but even a backup IP shouldn't affect HSTS.