-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Make HttpsConnectionFilter more configurable #4622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Putting this in RC1 for now, though it may have to get punted. |
Moving further out. Feel free to talk to me to bring this back. We'll just need to prioritize it with the rest of the work. |
#385 makes SslProtocols configurable. |
What we really need is a way to specify a function that returns the correct ssl certificate to use for a given hostname. Both Node.js & Go have such an option. The reason why specifying it statically is not sufficient is, that we may not always know which domains are going to be used for the server. Imagine a setup where a lot of customers use the same instance, but have different subdomains, like customer1.myapplication.com and customer2.myapplication.com, and where customers are created or deleted at runtime. In such a scenario, we don't even have the certificate for a customer created at runtime. The server would create one using Letsencrypt on the first request. Right now, the only option we have for something like that is to use an expensive wildcard certificate. |
@VanCoding that requires SNI, see dotnet/corefx#9608 |
@Tratcher Yes, I know. I just wanted to make sure that we make the most use of it as soon as they implement it :) |
I believe this isn't relevant anymore. |
Make allowed SslProtocols configurableconfigureOptions
Action.The text was updated successfully, but these errors were encountered: