I am trying to solve a CORS problem. We have an endpoint that supplies hmtl to two different domains. Most things I have read seem to say that you can either add a single domain to allow access, or use a wildcard. I don't want to use a wild card so can I just add
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="first.domain.net,second.domain.net" />
</customHeaders>
under the system.webserver section in my web.config?