Is it possible in Azure to have multiple hostHeader for one binding or is it mandatory to create one Binding for each host?
Example:
<Sites>
...
<Site name="sample.com" physicalDirectory="..\sample.com">
<Bindings>
<Binding name="ep_sample" endpointName="Endpoint1" hostHeader="www.sample1.com,www.sample2.com,www.sample3.com" />
</Bindings>
</Sites>
Or do I need to create each binding record for one hostHeader (knowing that the site path is the same)?
source
share