I'm trying to test one of our servers with this test.
We are using Nginx with multiple TLS certificates configured (so nginx will use SNI header to identify proper Vhost to use).
But I got an error from default Vhost.
I need this test case because I want to go directly on load-balancer without DNS resolution inplace.
Scenario: test case
Given url 'https://1.2.3.4/check'
And header Host = 'real-host-header'
When method get
Then status 200
How I can specify TLS SNI header for this request?